Private/assets/declarativeCopilot/manifest.json
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.19/MicrosoftTeams.schema.json", "manifestVersion": "1.19", "version": "1.0.0", "id": "${{TEAMS_APP_ID}}", "developer": { "name": "Microsoft", "websiteUrl": "https://github.com/code365opensource/microsoft.copilot.toolkit", "privacyUrl": "https://www.example.com/privacy", "termsOfUseUrl": "https://www.example.com/termofuse" }, "icons": { "color": "color.png", "outline": "outline.png" }, "name": { "short": "hellocopilot", "full": "Full name for hellocopilot" }, "description": { "short": "Short description for hellocopilot", "full": "Full description for hellocopilot" }, "accentColor": "#FFFFFF", "composeExtensions": [], "permissions": [ "identity", "messageTeamMembers" ], "copilotAgents": { "declarativeAgents": [ { "id": "declarativeAgent", "file": "declarativeAgent.json" } ] }, "validDomains": [] } |