Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,20 @@ Launch `copilot` in a folder that contains code you want to work with.

By default, `copilot` utilizes Claude Sonnet 4.5. Run the `/model` slash command to choose from other available models, including Claude Sonnet 4 and GPT-5.

#### Falling back to the HTTP responses transport

Models that advertise a WebSocket responses endpoint use it by default. If your
network blocks WebSocket connections, or a session starts failing with
`400 input item ID does not belong to this connection`, set this variable to use
the HTTP responses transport instead:

```bash
export COPILOT_CLI_DISABLE_WEBSOCKET_RESPONSES=true
```
Comment thread
1fanwang marked this conversation as resolved.

This is the environment equivalent of the SDK's `capi.enableWebSocketResponses`
session option.
Comment thread
1fanwang marked this conversation as resolved.
Outdated

### Experimental Mode

Experimental mode enables access to new features that are still in development. You can activate experimental mode by:
Expand Down