89 lines
3.0 KiB
XML
89 lines
3.0 KiB
XML
{
|
|
"widgettype": "VBox",
|
|
"options": {
|
|
"width": "100%",
|
|
"height": "100%",
|
|
"padding": "16px",
|
|
"spacing": "16px"
|
|
},
|
|
"subwidgets": [
|
|
{
|
|
"widgettype": "Text",
|
|
"options": {
|
|
"text": "代理执行控制台",
|
|
"fontSize": "20px",
|
|
"fontWeight": "bold",
|
|
"color": "#059669"
|
|
}
|
|
},
|
|
{
|
|
"widgettype": "Form",
|
|
"id": "agent_execute_form",
|
|
"options": {
|
|
"submit_url": "{{entire_url('api/agent_execute.dspy')}}",
|
|
"method": "POST",
|
|
"layout": "vertical",
|
|
"fields": [
|
|
{
|
|
"name": "tool_name",
|
|
"label": "工具名称",
|
|
"uitype": "text",
|
|
"required": true,
|
|
"placeholder": "例如: memory, skill_view, terminal, read_file"
|
|
},
|
|
{
|
|
"name": "parameters",
|
|
"label": "工具参数 (JSON)",
|
|
"uitype": "textarea",
|
|
"rows": 6,
|
|
"placeholder": "{\"key\": \"value\"}"
|
|
}
|
|
],
|
|
"buttons": [
|
|
{
|
|
"type": "submit",
|
|
"label": "执行工具",
|
|
"variant": "primary"
|
|
}
|
|
],
|
|
"maxWidth": "700px"
|
|
},
|
|
"binds": [
|
|
{
|
|
"wid": "self",
|
|
"event": "submited",
|
|
"actiontype": "script",
|
|
"script": "await bricks.show_resp_message_or_error(event.params)"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"widgettype": "VBox",
|
|
"options": {
|
|
"width": "100%",
|
|
"padding": "16px"
|
|
},
|
|
"subwidgets": [
|
|
{
|
|
"widgettype": "Text",
|
|
"options": {
|
|
"text": "可用工具列表",
|
|
"fontSize": "16px",
|
|
"fontWeight": "bold",
|
|
"color": "#374151",
|
|
"marginBottom": "8px"
|
|
}
|
|
},
|
|
{
|
|
"widgettype": "Text",
|
|
"options": {
|
|
"text": "memory: 保存和检索记忆 | skill_view: 查看技能 | skill_manage: 管理技能 | session_search: 搜索历史会话 | delegate_task: 委托任务 | execute_code: 执行代码 | terminal: 运行命令 | read_file: 读取文件 | write_file: 写入文件 | search_files: 搜索文件 | patch: 修改文件 | vision_analyze: 图像分析 | cronjob: 定时任务 | todo: 任务管理",
|
|
"fontSize": "12px",
|
|
"color": "#6B7280"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|