qwen_agent/mcp/rag_retrieve_tools.json
2025-10-29 11:18:26 +08:00

21 lines
535 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[
{
"name": "rag_retrieve",
"description": "调用RAG检索API根据查询内容检索相关文档。返回包含相关内容的markdown格式结果。",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "检索查询内容"
},
"top_k": {
"type": "integer",
"description": "返回结果的最大数量默认50",
"default": 50
}
},
"required": ["query"]
}
}
]