test_routing
Simulate agent selection for routing based on input text and strategy without actual execution, enabling efficient planning and testing for ACP-MCP Server integrations.
Instructions
Test routing without executing - shows which agent would be selected
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input_text | Yes | ||
strategy | No | default |
Input Schema (JSON Schema)
{
"properties": {
"input_text": {
"title": "Input Text",
"type": "string"
},
"strategy": {
"default": "default",
"title": "Strategy",
"type": "string"
}
},
"required": [
"input_text"
],
"type": "object"
}