Internet Lookup Verifier
Purpose
When a user asks a factual question, this skill performs an online search to confirm the answer and returns a concise verified response. It ensures that the assistant’s reply is backed by current, reliable sources.
How it works
- 1. Trigger – The skill activates when the system prompt or another skill signals a need for verification. Typically this happens before answering a question that contains keywords like fact, true/false, verify, or source.
- Search – Uses the
web_search tool to retrieve up to 5 relevant results (default 3). The query is the user’s question or a re‑phrased version suitable for search engines. - Extract – From each result, the skill pulls the title, URL and snippet. If needed, it can fetch the full page with
web_fetch for deeper analysis. - Evaluate – The assistant checks that at least one source explicitly supports the answer. If sources disagree or none are found, it reports uncertainty.
- Respond – Returns a short verified answer followed by a list of URLs (and optionally snippets) that back the claim.
Usage example
User: Is the capital of Australia Canberra?
Assistant (using this skill): Yes, Canberra is the capital of Australia. Source: https://www.britannica.com/place/Canberra-Australia
Limitations
- - Relies on the quality of public search results.
- May not handle niche or very new information if it hasn’t indexed yet.
- Does not guarantee 100 % accuracy; it only indicates that sources support the claim.
Extensibility
Add a
references/ folder with detailed guidelines for interpreting ambiguous results or handling conflicting sources. The skill can be extended to use more advanced NLP techniques for source credibility scoring.
互联网查询验证器
目的
当用户提出事实性问题时,该技能会执行在线搜索以确认答案,并返回简洁的验证结果。它确保助手的回复有当前可靠来源的支持。
工作原理
- 1. 触发 – 当系统提示或其他技能发出验证需求时,该技能被激活。通常发生在回答包含事实、真/假、验证或来源等关键词的问题之前。
- 搜索 – 使用websearch工具检索最多5个相关结果(默认3个)。查询内容为用户的问题或适合搜索引擎的改写版本。
- 提取 – 从每个结果中提取标题、URL和摘要。必要时可使用webfetch获取完整页面进行深入分析。
- 评估 – 助手检查至少有一个来源明确支持该答案。如果来源存在分歧或未找到任何来源,则报告不确定性。
- 回复 – 返回简短的验证答案,后附支持该主张的URL列表(可选包含摘要)。
使用示例
用户: 澳大利亚的首都是堪培拉吗?
助手(使用此技能): 是的,堪培拉是澳大利亚的首都。来源:https://www.britannica.com/place/Canberra-Australia
局限性
- - 依赖于公共搜索结果的质量。
- 对于尚未索引的小众或全新信息可能无法处理。
- 不保证100%准确;仅表明有来源支持该主张。
可扩展性
添加references/文件夹,包含解释模糊结果或处理冲突来源的详细指南。该技能可扩展使用更高级的NLP技术进行来源可信度评分。