inputSchema
{
"type": "object",
"required": [
"body"
],
"properties": {
"body": {
"type": "object",
"description": "要发送到写作台的载荷对象"
},
"action": {
"enum": [
"review",
"kb"
],
"type": "string",
"default": "review",
"description": "handoff 类型:review(审查结果)/ kb(知识库导出)"
},
"authToken": {
"type": "string",
"description": "可选的认证 token"
},
"timeoutMs": {
"type": "integer",
"default": 120000,
"description": "请求超时时间(毫秒)"
},
"handoffUrl": {
"type": "string",
"default": "http://127.0.0.1: 3003",
"description": "写作台 base URL"
}
}
}
outputSchema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "写作台返回的条目 id"
},
"ok": {
"type": "boolean",
"description": "是否成功"
},
"error": {
"type": "string",
"description": "错误信息(ok=false 时)"
},
"title": {
"type": "string",
"description": "写作台返回的标题"
}
}
}