smart_route_request
Route user requests to the optimal ACP agent using the ACP-MCP-Server, ensuring efficient processing and integration with MCP-compatible tools for enhanced AI agent communication.
Instructions
Intelligently route a request to the best ACP agent
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input_text | Yes | ||
mode | No | sync | |
session_id | No | ||
strategy | No | default |
Input Schema (JSON Schema)
{
"properties": {
"input_text": {
"title": "Input Text",
"type": "string"
},
"mode": {
"default": "sync",
"title": "Mode",
"type": "string"
},
"session_id": {
"default": null,
"title": "Session Id",
"type": "string"
},
"strategy": {
"default": "default",
"title": "Strategy",
"type": "string"
}
},
"required": [
"input_text"
],
"type": "object"
}