[ { "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"] } } ]