| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| fabric_1.4.450_checksums.txt | 2026-04-23 | 736 Bytes | |
| fabric_Darwin_x86_64.tar.gz | 2026-04-23 | 22.7 MB | |
| fabric_Linux_arm64.tar.gz | 2026-04-23 | 20.4 MB | |
| fabric_Linux_x86_64.tar.gz | 2026-04-23 | 22.2 MB | |
| fabric_Windows_arm64.zip | 2026-04-23 | 20.5 MB | |
| fabric_Darwin_arm64.tar.gz | 2026-04-23 | 21.4 MB | |
| fabric_Linux_i386.tar.gz | 2026-04-23 | 20.8 MB | |
| fabric_Windows_i386.zip | 2026-04-23 | 21.6 MB | |
| fabric_Windows_x86_64.zip | 2026-04-23 | 22.7 MB | |
| README.md | 2026-04-23 | 1.0 kB | |
| v1.4.450 source code.tar.gz | 2026-04-23 | 20.8 MB | |
| v1.4.450 source code.zip | 2026-04-23 | 21.2 MB | |
| Totals: 12 Items | 214.4 MB | 5 | |
Changes
PR #2092 by Resistor52: feat(openai): add GrokAI search grounding via xAI Responses API
- Added support for GrokAI search grounding via xAI's Responses API, fixing HTTP 422 errors caused by a hardcoded OpenAI
web_search_previewtool name inbuildResponseParams. - Introduced two new fields to
openai_compatible.ProviderConfig:WebSearchToolName(to override the default web search tool name) andEnableXSearch(to append xAI'sx_searchtool when search is enabled). - Both new fields default to empty/false, preserving full backwards compatibility for all existing providers.
- GrokAI is pre-configured with
WebSearchToolNameset to"web_search"andEnableXSearchset totrue, enabling grounded search results with real source URLs viafabric -V GrokAI --search. - Added tests in
openai_test.gocovering the new override paths and confirming default provider behavior remains unchanged.