Conversation
CommonStack's /v1/models lists anthropic/claude-haiku-4-5, so add it to the verified allowlist. The provider seed is ON CONFLICT DO NOTHING, so the new id would never reach a deployment whose commonstack row already exists; a one-shot backfill (commonstack-allowlist-v1) appends missing seeded ids, keeps any an admin added, leaves an unreadable row alone, and records itself so a later admin removal sticks. Co-Authored-By: Claude Opus 5.5 (1M context) <noreply@anthropic.com>
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This branch was successfully deployed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
DO NOT MERGE — work in progress: the CommonStack-first routing flip still lands on this branch.
Goal: route every platform-credits LLM call through CommonStack first, and fail over to OpenRouter when CommonStack runs out.
Done so far: Claude Haiku 4.5 (
anthropic/claude-haiku-4-5) is added toCOMMONSTACK_MODEL_ALLOWLIST. CommonStack's/v1/modelsconfirms it serves that exact id.ON CONFLICT DO NOTHING, so changing the constant alone never reaches prod's existingcommonstackrow.commonstack-allowlist-v1, fixes that in both the SQLite and Postgres stores. It adds only missing ids and keeps any an admin added.To do:
ATL_PLATFORM_PROVIDER_ORDER, defaultcommonstack,openrouter). Apply it atmodel_providers/service.pyresolve_platform_execution_candidatesandlist_execution_options, and at the legacy fallback inexecution/service.py.adapters/base.py.🤖 Generated with Claude Code