[scx-ai] Add SCX.ai pricing and model configs - #874
Open
bhuvan2134686 wants to merge 1 commit into
Open
Conversation
bhuvan2134686
force-pushed
the
provider/scx-ai
branch
from
August 6, 2026 02:03
c6f1e79 to
f3fdea6
Compare
bhuvan2134686
force-pushed
the
provider/scx-ai
branch
from
August 6, 2026 02:08
f3fdea6 to
e944d7d
Compare
SCX.ai is an Australian AI platform with an OpenAI-compatible API at https://api.scx.ai/v1. Adds pricing and general configs for GLM-5.2 and qwen3.8-max. Prices are cents per token (USD/M / 10,000): GLM-5.2 $0.822/M in, $0.206/M cached, $2.888/M out qwen3.8-max $1.815/M in, $0.21/M cached, $5.4461/M out Both carry a 131072 max_tokens ceiling. For GLM-5.2 this comes from the endpoint's own validator rather than the published catalogue, which advertises a stale 4096.
bhuvan2134686
force-pushed
the
provider/scx-ai
branch
from
August 6, 2026 02:31
e944d7d to
348fc67
Compare
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.
Adds pricing and model configs for SCX.ai, an Australian AI platform serving models over an OpenAI-compatible API (
https://api.scx.ai/v1).Companion gateway PR: Portkey-AI/gateway#1760
Files
pricing/scx-ai.json— pay-as-you-go ratesgeneral/scx-ai.json— params,max_tokensceilings and capability flagsPricing
Prices are cents per token (
USD per million ÷ 10,000):GLM-5.2qwen3.8-maxSource: SCX publishes its USD rates publicly via LLM Gateway, which lists SCX as a provider — https://llmgateway.io/providers/scx-ai-gp
Flagging openly: scx.ai does not currently publish a first-party per-token price page — its pricing page is quote-based, and the authenticated
/v1/modelsendpoint returns AUD list prices rather than these USD rates.Model configs
Both models take a
max_tokensceiling of131072and are configured as text in/out with tool calling.For
GLM-5.2that ceiling comes from the endpoint's own validator (max_tokensabove 131072 is rejected with "expected a value <= 131072") rather than the published catalogue, which advertises a stale4096.qwen3.8-maxis a very recent addition and is not yet serving on the public API at time of writing — it is absent from/v1/modelsand chat completions return "Unsupported model". Its rates and limits are supplied directly by SCX. The upstream Qwen3.8-Max is natively multimodal, but image input on SCX's deployment is unverified, soimageis deliberately not declared intype.supporteduntil it is confirmed. Happy to split this model into a follow-up PR if you would rather every entry be live-verifiable at merge time.Validation
jq emptypasses on both filespython3 scripts/check_duplicate_keys.py→ no duplicate keysprettier@2.8.8 --checkpasses