Opus 5 Issues - or maybe its just me? #4840
superdooper86
started this conversation in
General
Replies: 2 comments
|
same... |
0 replies
|
I have an working Opus-5 with hermes now (2 commits). It is vibe code project so I don't do a PR to CLIProxyAPI upstream. Feel free to borrow the information you need. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Written by AI. Sorry
Is it a request payload issue?
[x] Yes, this is a request payload issue. I am using a client/cURL to send a request payload, but I received an unexpected error.
[ ] No, it's another issue.
If it's a request payload issue, you MUST know
Request is accepted (HTTP 200), but the effective model behavior is wrong. Curl payload and observed results are included below.
Describe the bug
Requesting
claude-opus-5through CLIProxyAPI Claude OAuth (cloak enabled) does not behave like real Claude Opus 5.Control: official Claude Code on the same machine/account class correctly behaves as Opus 5 and reports knowledge cutoff May 2026.
Via CLIProxyAPI, the same style of prompt against
claude-opus-5behaves like an older model:This reproduces on:
v7.2.98devbuild46172dd4Cloak is enabled (
disable-claude-cloak-mode: false). Disabling cloak is not a usable workaround (aggressive 429s).CLI Type
Claude Code OAuth
Model Name
claude-opus-5LLM Client
/v1/messages2.1.219Request Information
curl http://127.0.0.1:8317/v1/messages
-H "x-api-key: $CLIPROXY_API_KEY"
-H "anthropic-version: 2023-06-01"
-H "content-type: application/json"
-d '{
"model": "claude-opus-5",
"max_tokens": 64000,
"stream": false,
"thinking": { "type": "adaptive" },
"output_config": { "effort": "high" },
"messages": [
{
"role": "user",
"content": "what exact model are you, and what is your knowledge cut off."
}
]
}'
Observed via CLIProxyAPI (cloak ON):
claude-opus-5Control via Claude Code CLI:
Notes:
/v1/modelslistsclaude-opus-5thinkingadaptive +output_config.effort)Expected behavior
model: "claude-opus-5"through Claude OAuth + cloak should route to real Claude Opus 5 and match Claude Code behavior/knowledge for the same account class (including May 2026 cutoff packaging), not behave like Opus 4.5 / early-2025.Screenshots
N/A
OS Type
dev-46172dd4(also reproduced onv7.2.98)2.1.219Additional context
host: 127.0.0.1port: 8317disable-claude-cloak-mode: falseclaude-opus-5, not just a client display-label issue.claude-opus-5should already be full Opus 5. The bug is that CLIProxy’sclaude-opus-5path does not behave like real Opus 5.All reactions