Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
GuDaStudio
/
GrokSearch
Public
Notifications
You must be signed in to change notification settings
Fork
197
Star
1.9k
Code
Issues
19
Pull requests
7
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
feat: 支持通过 GROK_SSL_VERIFY 环境变量禁用 SSL 证书验证
- #23
#23
Open
c00134744
wants to merge 18 commits into
GuDaStudio:grok-with-tavily
GuDaStudio/GrokSearch:grok-with-tavily
from
c00134744:grok-with-tavily
c00134744/GrokSearch:grok-with-tavily
Copy head branch name to clipboard
Conversation
Commits
18
(18)
Checks
Files changed
Open
feat: 支持通过 GROK_SSL_VERIFY 环境变量禁用 SSL 证书验证
#23
c00134744
wants to merge 18 commits into
GuDaStudio:grok-with-tavily
GuDaStudio/GrokSearch:grok-with-tavily
from
c00134744:grok-with-tavily
c00134744/GrokSearch:grok-with-tavily
Copy head branch name to clipboard
Commits
Commits on Feb 4, 2026
v1.3.1:完善tavily协作
GuDaStudio
committed
75e6671
View commit details
Copy full SHA for 75e6671
Browse repository at this point
v1.3.2:允许grok返回英文
GuDaStudio
committed
3297e2c
View commit details
Copy full SHA for 3297e2c
Browse repository at this point
Commits on Feb 11, 2026
v1.3.3:完善README
GuDaStudio
committed
cc7f175
View commit details
Copy full SHA for cc7f175
Browse repository at this point
Commits on Feb 13, 2026
v1.3.4:允许传入model参数
GuDaStudio
committed
c211ab3
View commit details
Copy full SHA for c211ab3
Browse repository at this point
v1.3.5:可通过环境变量设置grok模型
GuDaStudio
committed
8976747
View commit details
Copy full SHA for 8976747
Browse repository at this point
Commits on Feb 15, 2026
v1.3.6:web_fetch新增Firecrawl托底机制。Tavily提取失败时自动降级到Firecrawl Scrape,支持空markdown自动重试与递增waitFor策略;新增FIRECRAWL_API_URL和FIRECRAWL_API_KEY环境变量配置;搜索prompt优化及时间上下文始终注入;同步更新README。
GuDaStudio
committed
b502273
View commit details
Copy full SHA for b502273
Browse repository at this point
v1.4.0:web_search多信源并行搜索升级。检测到Tavily/Firecrawl API Key时自动作为额外参考信源并行搜索,Firecrawl占70%配额、Tavily占30%;新增extra_sources参数控制额外信源数量(默认20,设0禁用);单信源失败不影响其他结果;utils新增format_extra_sources格式化函数,按来源分组并去重URL。
GuDaStudio
committed
f9d318f
View commit details
Copy full SHA for f9d318f
Browse repository at this point
v1.4.1:重构 web_search 工具描述与参数。更新描述以明确搜索功能,移除冗余细节。简化查询参数注释,提升清晰度。
GuDaStudio
committed
db82f06
View commit details
Copy full SHA for db82f06
Browse repository at this point
v1.4.2:将HTTP客户端超时时间延长至90秒以适配Tavily和Firecrawl搜索;更新额外资源章节标题以提升表述清晰度。
GuDaStudio
committed
a5e6022
View commit details
Copy full SHA for a5e6022
Browse repository at this point
fix:修正Firecrawl search响应结果提取路径为data.web,与API文档结构一致。
GuDaStudio
committed
1dfe1dd
View commit details
Copy full SHA for 1dfe1dd
Browse repository at this point
v1.5.0:新增search_planning结构化搜索规划工具。基于Thoughtbox设计模式,引导LLM在搜索前完成意图分析→复杂度评估→查询分解→策略规划→工具选择→执行排序六阶段结构化思考;complexity level自适应控制所需阶段数(L1仅需3阶段,L2需5阶段,L3全部6阶段);支持session跨调用状态追踪、phase revision覆写及计划完成时自动汇总ex…
Show description for 66a55d3
GuDaStudio
committed
66a55d3
View commit details
Copy full SHA for 66a55d3
Browse repository at this point
v1.5.1:基于真实调用反馈优化search_planning引导精度。SubQuery.boundary强制声明兄弟子查询互斥关系;SearchTerm.term增加冗余同义词警告、purpose约束为单一sub-query ID禁止合并、round补充多轮语义说明;tool description Phase 3新增单一分解轴原则防止双轴交叉产生重叠矩阵;anti-patterns改为…
Show description for fb4233f
GuDaStudio
committed
fb4233f
View commit details
Copy full SHA for fb4233f
Browse repository at this point
v1.5.2:IntentOutput新增unverified_terms字段,引导LLM显式标记外部分类/排名术语(如CCF-A、Fortune 500);Phase 1说明追加unverified_terms识别指引;Phase 3追加前置规则要求将未验证术语转化为前置子查询,禁止从训练数据硬编码假定值。
GuDaStudio
committed
29bdbd1
View commit details
Copy full SHA for 29bdbd1
Browse repository at this point
Commits on Feb 16, 2026
v1.6.0:增强web_search功能,新增URL提取与描述特性。引入extract_unique_urls工具从搜索结果中采集独立URL。将extra_sources参数默认值更新为10并优化Firecrawl计数计算。在GrokSearchProvider中实现异步URL描述与排序方法以提升结果相关性。
GuDaStudio
committed
f96a02f
View commit details
Copy full SHA for f96a02f
Browse repository at this point
Commits on Feb 17, 2026
v1.7.0:依赖于grok-4.20-beta的高质量回答,区分回答正文和信源,允许LLM单独调用工具提取信源
GuDaStudio
committed
30c3e2f
View commit details
Copy full SHA for 30c3e2f
Browse repository at this point
v1.7.1:调整grok搜搜提示词
GuDaStudio
committed
01d30be
View commit details
Copy full SHA for 01d30be
Browse repository at this point
Commits on Feb 28, 2026
v1.7.2:修复search_prompt触发Grok安全过滤的问题。重写搜索提示词移除越狱特征语句;修正search方法中search_prompt被同时注入system和user消息的冗余结构。
GuDaStudio
committed
b06389f
View commit details
Copy full SHA for b06389f
Browse repository at this point
Commits on Mar 4, 2026
feat: 支持通过 GROK_SSL_VERIFY 环境变量禁用 SSL 证书验证
Show description for ea31102
c00134744
authored
ea31102
View commit details
Copy full SHA for ea31102
Browse repository at this point
You can’t perform that action at this time.