mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
e413c5a285
* Add M365 Agent SDK interop sample * Update dotnet/samples/M365Agent/README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Address some comments. * Update dotnet/samples/M365Agent/Agents/WeatherForecastAgent.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update dotnet/samples/M365Agent/Agents/WeatherForecastAgentResponse.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update dotnet/samples/M365Agent/Agents/WeatherForecastAgentResponse.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Address PR comments * Refactor code to simplify. * Fix broken link. --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.22/MicrosoftTeams.schema.json",
|
|
"manifestVersion": "1.22",
|
|
"version": "1.0.0",
|
|
"id": "<<AAD_APP_CLIENT_ID>>",
|
|
"developer": {
|
|
"name": "Microsoft, Inc.",
|
|
"websiteUrl": "https://example.azurewebsites.net",
|
|
"privacyUrl": "https://example.azurewebsites.net/privacy",
|
|
"termsOfUseUrl": "https://example.azurewebsites.net/termsofuse"
|
|
},
|
|
"icons": {
|
|
"color": "color.png",
|
|
"outline": "outline.png"
|
|
},
|
|
"name": {
|
|
"short": "AF Sample Agent",
|
|
"full": "M365 AgentSDK and Microsoft Agent Framework Sample"
|
|
},
|
|
"description": {
|
|
"short": "Sample demonstrating M365 AgentSDK, Teams, and Microsoft Agent Framework",
|
|
"full": "Sample demonstrating M365 AgentSDK, Teams, and Microsoft Agent Framework"
|
|
},
|
|
"accentColor": "#FFFFFF",
|
|
"copilotAgents": {
|
|
"customEngineAgents": [
|
|
{
|
|
"id": "<<AAD_APP_CLIENT_ID>>",
|
|
"type": "bot"
|
|
}
|
|
]
|
|
},
|
|
"bots": [
|
|
{
|
|
"botId": "<<AAD_APP_CLIENT_ID>>",
|
|
"scopes": [
|
|
"personal"
|
|
],
|
|
"supportsFiles": false,
|
|
"isNotificationOnly": false
|
|
}
|
|
],
|
|
"permissions": [
|
|
"identity",
|
|
"messageTeamMembers"
|
|
],
|
|
"validDomains": [
|
|
"<<BOT_DOMAIN>>"
|
|
]
|
|
} |