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
docs: fix outdated content and document missing commands
Spotted while auditing the published documentation against the source.
Wrong / outdated information:
- Fix the Azure provider env var: the `azure` alias defaults to
`AZURE_API_KEY` (see pkg/model/provider/aliases.go), not
`AZURE_OPENAI_API_KEY`. Updated the providers overview, models
concept page, and troubleshooting cheat sheet.
- Fix the GitHub Copilot env var: the alias reads `GITHUB_TOKEN` (a
PAT with the `copilot` scope), not `gh auth login`-managed creds.
- Fix a broken internal link in providers/openai (`/examples/
websocket_transport/` does not exist as a docs page) — point at the
YAML on GitHub instead.
- Fix a stray extra column delimiter in the Log Analysis table and a
missing word in the Port conflicts section of the troubleshooting
page.
Missing content:
- Add Tasks and Model Picker tools to the navigation; both pages
already exist under /tools/ but were not linked from the sidebar.
- Document `docker agent serve chat` (OpenAI-compatible Chat
Completions server) — the command exists but had no public docs.
- Document `docker agent version`.
- Document the missing `docker agent run` flags surfaced by
cmd/root/run.go and cmd/root/flags.go: `--remote`, `--working-dir`,
`--env-from-file`, `--code-mode-tools`, `--models-gateway`,
`--fake`, `--record`.
- Document the global `--cache-dir`, `--config-dir`, `--data-dir`
flags from cmd/root/root.go.
- Round out the API-key cheat sheet in the troubleshooting page with
Nebius, MiniMax, Requesty, GitHub Copilot, and Azure entries (and
note that `GOOGLE_API_KEY` and `GEMINI_API_KEY` are both honored).
Assisted-By: docker-agent
Signed-off-by: David Gageot <david@gageot.net>
See [ACP]({{ '/features/acp/' | relative_url }}) for details on the Agent Client Protocol.
178
185
186
+
### `docker agent serve chat`
187
+
188
+
Start an HTTP server that exposes one or more agents through an **OpenAI-compatible Chat Completions API** at `/v1/chat/completions` and `/v1/models`. This lets any tool that already speaks the OpenAI protocol — for example [Open WebUI](https://github.com/open-webui/open-webui), `curl`, the OpenAI Python SDK, or LangChain — drive a docker-agent agent without any custom integration.
0 commit comments