جميع التكاملات
Microsoft Teams Integration
Bring your AI knowledge assistant into Microsoft Teams. Adaptive Cards, channel support, and enterprise-grade security.
كيف يعمل مع Microsoft Teams
Three steps to deploy AI in your Teams workspace.
Bot Registration
Azure bot created
Manifest side-loaded
Bot registered in tenant
ما تحصل عليه
Enterprise AI assistant for Microsoft Teams.
Adaptive Cards
Rich, interactive responses formatted as Adaptive Cards with source links and action buttons.
Channel & Chat
Works in team channels, group chats, and 1:1 direct messages.
Source Citations
Every answer includes a citation back to the original document so your team can verify it.
Tenant-Scoped
Each Teams bot is tied to a single InfoLens tenant, so its answers are isolated to your knowledge base.
إعداد سريع
Build a custom Teams bot with the TypeScript SDK.
teams-bot.ts
// Teams bot with InfoLens
import { InfoLensClient } from '@infolens/sdk';
const client = new InfoLensClient({
apiKey: 'pk_live_...'
});
// In your Teams bot handler:
async onMessage(context) {
const res = await client.agents.chat({
agentId: 'ag_7f3k9x2m',
apiKey: 'pk_live_...',
message: context.activity.text
});
await context.sendActivity(res.answer);
}