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
Copy file name to clipboardExpand all lines: README.md
+32Lines changed: 32 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -128,6 +128,38 @@ project-local `.claude/settings.json` and `.claude/settings.local.json` and
128
128
applied to Claude requests only when the model supports reasoning. If it is not
129
129
configured, Claude requests do not infer or attach a reasoning effort.
130
130
131
+
## Web Search
132
+
133
+
Not every Copilot model can run web search. If web search is not configured or
134
+
the selected backend cannot search, the bridge tells the client how to configure
135
+
`COPILOT_WEB_SEARCH_BACKEND` and does not switch models automatically.
136
+
137
+
For Claude Code, configure web search in the user-level
138
+
`~/.claude/settings.json`:
139
+
140
+
```json
141
+
{
142
+
"env": {
143
+
"COPILOT_WEB_SEARCH_BACKEND": "gpt-5.5"
144
+
}
145
+
}
146
+
```
147
+
148
+
For Codex CLI, configure the same backend as a top-level key in
149
+
`~/.codex/config.toml`:
150
+
151
+
```toml
152
+
COPILOT_WEB_SEARCH_BACKEND = "gpt-5.5"
153
+
```
154
+
155
+
| Value | Search path | Requirement |
156
+
| ----- | ----------- | ----------- |
157
+
| Copilot model id, for example `gpt-5.5`| Copilot HTTP `/responses` + `web_search_preview`| The model must support Copilot Responses web search. |
158
+
|`searxng`| Local SearXNG at `http://localhost:8080`| Start SearXNG yourself. Setup guide: https://github.com/betaHi/openclaw-searxng-search.|
159
+
|`copilot-cli` or `copilot`| GitHub Copilot CLI `web_search` tool, using the current request model | Install and sign in to GitHub Copilot CLI yourself. |
160
+
161
+
The bridge never installs Docker, SearXNG, or Copilot CLI automatically.
0 commit comments