Skip to content

Commit 0d21248

Browse files
authored
docs(realtime): fix Opus backend installation (#11018)
The Realtime guide incorrectly sent the Opus backend through the model gallery endpoint. Point users to the backend gallery API and document the UI and CLI alternatives. Assisted-by: Codex:gpt-5 Signed-off-by: Richard Palethorpe <io@richiejp.com>
1 parent 54d5c18 commit 0d21248

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

docs/content/features/openai-realtime.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,10 +192,18 @@ The response contains the SDP answer to complete the WebRTC handshake.
192192

193193
#### Opus backend requirement
194194

195-
WebRTC uses the Opus audio codec for encoding and decoding audio on RTP tracks. The **opus** backend must be installed for WebRTC to work. Install it from the model gallery:
195+
WebRTC uses the Opus audio codec for encoding and decoding audio on RTP tracks. The **opus** backend must be installed for WebRTC to work. Install it from the **Backends** page in the web UI, or from the backend gallery with the API:
196196

197197
```bash
198-
curl http://localhost:8080/models/apply -H "Content-Type: application/json" -d '{"id": "opus"}'
198+
curl -X POST http://localhost:8080/backends/apply \
199+
-H "Content-Type: application/json" \
200+
-d '{"id": "opus"}'
201+
```
202+
203+
For a local binary installation, you can instead use the CLI:
204+
205+
```bash
206+
local-ai backends install opus
199207
```
200208

201209
Or set the `EXTERNAL_GRPC_BACKENDS` environment variable if running a local build:

0 commit comments

Comments
 (0)