Last active
January 6, 2025 03:59
-
-
Save vman/35bace9d20fa8a90b06693b83fce23c9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://developer.microsoft.com/json-schemas/copilot/declarative-agent/v1.2/schema.json", | |
"version": "v1.2", | |
"name": "MyFirstAgent", | |
"description": "Declarative agent created with Teams Toolkit", | |
"instructions": "$[file('instruction.txt')]", | |
"conversation_starters": [ | |
{ | |
"title": "Hi", | |
"text": "Hello, how are you?" | |
}, | |
{ | |
"title": "Surprise me", | |
"text": "Tell me an interesting fact" | |
} | |
], | |
"actions": [ | |
{ | |
"id": "myPlugin", | |
"file": "ai-plugin.json" | |
} | |
], | |
"capabilities": [ | |
{ | |
"name": "WebSearch" | |
}, | |
{ | |
"name": "GraphicArt" | |
}, | |
{ | |
"name": "CodeInterpreter" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment