Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion docs/about/contributing/documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ following third-party references:
## Tools

This repository runs [Vale](https://vale.sh/) on `docs/` as part of CI to enforce prose style.
The configuration is the repo-root `.vale.ini`, and the curated rule set is documented in [`docs/.style/style-guide/`](../../.style/style-guide/README.md).
The configuration is the repo-root `.vale.ini`, and the curated rule set is documented in [`docs/.style/style-guide/`](https://github.com/coder/coder/tree/main/docs/.style/style-guide).
Run the same checks locally with `make lint/prose`.
Vale runs in advisory mode in this iteration: warnings surface as inline PR annotations, but they don't block the build.

Expand Down
51 changes: 25 additions & 26 deletions docs/ai-coder/ai-gateway/monitoring.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,38 +197,37 @@ curl -X GET "https://coder.example.com/api/v2/ai-gateway/sessions" \

Available query filters:

- `client` - Filter by client name.

> [!NOTE]
> Client classification is done on best effort basis using the `User-Agent` header;
> not all clients send these headers in an easily-identifiable manner.

<br /><details>
<summary>Possible <code>client</code> values</summary>

- `Claude Code`
- `Codex`
- `Zed`
- `GitHub Copilot (VS Code)`
- `GitHub Copilot (CLI)`
- `Kilo Code`
- `Roo Code`
- `Coder Agents`
- `Mux`
- `Cursor`
- `OpenCode`
- `Charm Crush`
- `Junie`
- `Unknown`

</details>

- `client` - Filter by client name. Possible values are listed below.
- `initiator` - Filter by user ID or username
- `provider` - Filter by AI provider (e.g., `openai`, `anthropic`)
- `model` - Filter by model name
- `started_after` - Filter sessions after a timestamp
- `started_before` - Filter sessions before a timestamp

<details>
<summary>Possible <code>client</code> values</summary>

> [!NOTE]
> Client classification is done on best effort basis using the `User-Agent` header;
> not all clients send these headers in an easily-identifiable manner.

- `Claude Code`
- `Codex`
- `Zed`
- `GitHub Copilot (VS Code)`
- `GitHub Copilot (CLI)`
- `Kilo Code`
- `Roo Code`
- `Coder Agents`
- `Mux`
- `Cursor`
- `OpenCode`
- `Charm Crush`
- `Junie`
- `Unknown`

</details>

Refer to the [API documentation](../../reference/api/aigateway.md) for full details.

## Data retention
Expand Down
Loading