- 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.
16 lines
533 B
JSON
16 lines
533 B
JSON
{
|
|
"name": "agent_download",
|
|
"description": "Download agent source code from the host into the sandbox development directory. Use this to study existing agents as reference. Any agent can be downloaded (read-only reference).",
|
|
"process": "tools.agent_download",
|
|
"inputSchema": {
|
|
"type": "object",
|
|
"properties": {
|
|
"id": {
|
|
"type": "string",
|
|
"description": "Agent ID in dot notation (e.g. 'yao.slides', 'smith.weather')"
|
|
}
|
|
},
|
|
"required": ["id"]
|
|
},
|
|
"x-process-args": ["$args.id"]
|
|
}
|