📦 Qveris
v1.0.0通过 QVeris API 搜索并执行动态工具。用于需要动态查找并调用外部 API/工具(天气、搜索、数据获取、股票等)的场景。
详细分析 ▾
运行时依赖
安装命令
点击复制技能文档
QVeris 工具搜索与执行 QVeris 提供动态工具发现与执行——按能力搜索工具,再带参数执行。
配置 需设置环境变量:QVERIS_API_KEY 获取地址:https://qveris.ai
快速开始 搜索工具 uv run scripts/qveris_tool.py search "weather forecast API"
执行工具 uv run scripts/qveris_tool.py execute openweathermap_current_weather --search-id --params '{"city": "London", "units": "metric"}'
脚本用法 scripts/qveris_tool.py [options]
命令 search 按能力描述搜索工具 execute 用参数执行指定工具
选项 --limit N 搜索结果上限(默认 5) --search-id ID 前次搜索返回的 ID(execute 必需) --params JSON 工具参数 JSON 字符串 --max-size N 最大响应字节数(默认 20480) --json 输出原始 JSON,不格式化
工作流 搜索:描述所需能力(非具体参数) 好:"weather forecast API" 坏:"get weather for London"
选择:按 success_rate 与 avg_execution_time 评估 执行:用 tool_id、search_id 及参数调用
示例会话 # 找天气工具 uv run scripts/qveris_tool.py search "current weather data"
# 用返回的 tool_id 与 search_id 执行 uv run scripts/qveris_tool.py execute openweathermap_current_weather \ --search-id abc123 \ --params '{"city": "Tokyo", "units": "metric"}'
用例 天气数据:获取任意位置当前天气与预报 股市:查询股价、历史数据、财报日历 搜索:网页搜索、新闻检索 数据 API:汇率、地理定位、翻译 更多:QVeris 聚合数千 API 工具