mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
30 lines
644 B
JSON
30 lines
644 B
JSON
{
|
|
"description": "Create conversation and manipulate messages.",
|
|
"setup": {
|
|
"input": {
|
|
"type": "String",
|
|
"value": "Why is the sky blue?"
|
|
}
|
|
},
|
|
"validation": {
|
|
"conversation_count": 2,
|
|
"min_action_count": 8,
|
|
"min_message_count": 1,
|
|
"min_response_count": 1,
|
|
"actions": {
|
|
"start": [
|
|
"conversation_create1",
|
|
"sendActivity_conversation",
|
|
"add_message",
|
|
"get_message_single",
|
|
"sendActivity_message",
|
|
"copy_messages",
|
|
"get_messages_all",
|
|
"sendActivity_copy"
|
|
],
|
|
"final": [
|
|
"sendActivity_copy"
|
|
]
|
|
}
|
|
}
|
|
} |