sync: note claude alias correction

This commit is contained in:
Rene Fichtmueller 2026-05-12 22:20:04 +02:00
parent 9027484e3d
commit ebafb99645
2 changed files with 4 additions and 2 deletions

View File

@ -29,7 +29,8 @@
- It translates Claude/Anthropic `/v1/messages` text calls to Gateway `/v1/chat/completions`. - It translates Claude/Anthropic `/v1/messages` text calls to Gateway `/v1/chat/completions`.
- Claude Companion smoke with model `claude-sonnet-4-6` returned content and was tracked. - Claude Companion smoke with model `claude-sonnet-4-6` returned content and was tracked.
- Claude model alias warning: - Claude model alias warning:
- `claude-sonnet-4-1` is stale for current Claude Code bridge behavior and produced empty/failing output. - `claude-sonnet-4-1` was stale for current Claude Code bridge behavior and produced empty/failing output.
- Live Gateway provider metadata was corrected to expose `claude-sonnet-4-6`.
- `claude-sonnet-4-6`, `sonnet`, or default bridge model works. - `claude-sonnet-4-6`, `sonnet`, or default bridge model works.
- Remaining auth blockers: - Remaining auth blockers:
- GitHub Copilot bridge remains `auth_required`. - GitHub Copilot bridge remains `auth_required`.

View File

@ -14,6 +14,8 @@
- Local Gateway Companion is running on `127.0.0.1:11435` and forwards OpenAI-compatible traffic to `https://llm-gateway.context-x.org`. - Local Gateway Companion is running on `127.0.0.1:11435` and forwards OpenAI-compatible traffic to `https://llm-gateway.context-x.org`.
- Companion now translates Anthropic `/v1/messages` to Gateway `/v1/chat/completions` so Claude Code style calls can be tracked. - Companion now translates Anthropic `/v1/messages` to Gateway `/v1/chat/completions` so Claude Code style calls can be tracked.
- Claude Companion smoke worked with caller `claude-code-companion-smoke-46b` and model `claude-sonnet-4-6`. - Claude Companion smoke worked with caller `claude-code-companion-smoke-46b` and model `claude-sonnet-4-6`.
- Live Gateway model registry was corrected so `/v1/models` exposes `claude-sonnet-4-6` instead of stale `claude-sonnet-4-1`.
- Direct Gateway Claude smoke with `claude-sonnet-4-6` worked after the alias correction.
## Local Client Routing ## Local Client Routing
@ -48,6 +50,5 @@
## Next ## Next
- Add first-class `/v1/messages` to the Gateway itself instead of relying only on the local Companion. - Add first-class `/v1/messages` to the Gateway itself instead of relying only on the local Companion.
- Update Gateway provider model aliases from older Claude names to current Claude Code aliases such as `claude-sonnet-4-6`.
- Implement tool-call translation if Claude Code itself should run as a full agent through the Gateway. - Implement tool-call translation if Claude Code itself should run as a full agent through the Gateway.
- Finish GitHub Copilot and M365 auth interactively. - Finish GitHub Copilot and M365 auth interactively.