- Implemented AssistantReloadFunc to enable hot-reloading of assistants after deployment, improving deployment flexibility. - Enhanced gRPC authProvider to include workspace and sandbox IDs from incoming context metadata, enriching the authentication context. - Updated tools to support new agent-related functionalities, including listing, downloading, deploying, and connecting agents. - Expanded system tools documentation to include new agent commands, ensuring comprehensive guidance for users.
20 lines
625 B
JSON
20 lines
625 B
JSON
{
|
|
"name": "agent_deploy",
|
|
"description": "Deploy agent source code from the sandbox development directory to the host. Restricted to the 'smith' namespace only.",
|
|
"process": "tools.agent_deploy",
|
|
"inputSchema": {
|
|
"type": "object",
|
|
"properties": {
|
|
"id": {
|
|
"type": "string",
|
|
"description": "Agent ID in dot notation (e.g. 'smith.weather'). Must use 'smith' namespace."
|
|
},
|
|
"message": {
|
|
"type": "string",
|
|
"description": "Optional deploy message for logging purposes."
|
|
}
|
|
},
|
|
"required": ["id"]
|
|
},
|
|
"x-process-args": ["$args.id", "$args.message"]
|
|
}
|