Microsoft.Extensions.AI Integration
Cross-SDK comparison
See the centralized MEAI documentation for feature matrices and comparisons across all tryAGI SDKs.
The Dust SDK provides AIFunction tool wrappers compatible with Microsoft.Extensions.AI. These tools can be used with any IChatClient to give AI models access to Dust's AI agent management, conversation handling, space browsing, and data source listing.
Available Tools
| Tool | Description |
|---|---|
AsListAgentsTool() |
List AI agent configurations in a workspace |
AsGetAgentTool() |
Get detailed configuration of a specific agent |
AsSearchAgentsTool() |
Search for agents by name |
AsCreateConversationTool() |
Create a new conversation with an initial message |
AsGetConversationTool() |
Get details of a specific conversation |
AsSendMessageTool() |
Send a message to an existing conversation |
AsListSpacesTool() |
List available spaces (projects) in a workspace |
AsListDataSourcesTool() |
List data sources in a workspace space |
Usage Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | |