send_message
Send messages to Microsoft Copilot Studio Agents through Direct Line API to interact with custom AI assistants and manage conversation flow in VS Code.
Instructions
Send a message to the Copilot Studio Agent
Input Schema
Name | Required | Description | Default |
---|---|---|---|
conversationId | No | Optional conversation ID to continue existing conversation | |
message | Yes | The message text to send |
Input Schema (JSON Schema)
{
"properties": {
"conversationId": {
"description": "Optional conversation ID to continue existing conversation",
"type": "string"
},
"message": {
"description": "The message text to send",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}