mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
d2e694dfe1
* Fix QuestionExecutor looping after GotoAction re-entry in declarative workflows * Addressed failing integration test and promptcount
29 lines
525 B
JSON
29 lines
525 B
JSON
{
|
|
"description": "Human in the loop sample - RequestExternalInput.yaml.",
|
|
"setup": {
|
|
"input": {
|
|
"type": "String",
|
|
"value": "n/a"
|
|
},
|
|
"responses": [
|
|
{
|
|
"type": "String",
|
|
"value": "This is external input"
|
|
}
|
|
]
|
|
},
|
|
"validation": {
|
|
"conversation_count": 1,
|
|
"min_action_count": 2,
|
|
"min_response_count": 1,
|
|
"min_message_count": 1,
|
|
"actions": {
|
|
"start": [
|
|
"get_input"
|
|
],
|
|
"final": [
|
|
"show_input"
|
|
]
|
|
}
|
|
}
|
|
} |