AAI SDK
    Preparing search index...

    Type Alias GatewayModelInfo

    The AssemblyAI LLM Gateway model catalog.

    GENERATED — run node scripts/gen-gateway-models.mjs --write to refresh, and pnpm check:gateway-models to verify. Do not hand-edit: every hand-maintained version of this list was wrong. One carried a deprecated model and one that had never existed while missing nine real ones; another inferred EU availability from id prefixes and produced four models the EU endpoint does not serve.

    Capabilities come from the endpoint's supported_parameters and are not decoration:

    • stream: false cannot be used for a voice pipeline or a studio turn at all — both stream. Two listed models are in this category.
    • tools: false cannot run an agent that has tools.

    A model being listed here means the gateway advertises it, which is a weaker claim than it working: kimi-k2.5 is advertised and answers 410. That is why the check script probes rather than trusting this file.

    type GatewayModelInfo = {
        context: number;
        eu: boolean;
        live: boolean;
        stream: boolean;
        tools: boolean;
    }
    Index
    context: number

    Context window in tokens, as the gateway reports it.

    eu: boolean

    Served by the EU endpoint (llm-gateway.eu.assemblyai.com).

    live: boolean

    Answered a minimal request, as this SDK sends one, when generated. false means the gateway advertises the model and will not run it for us: kimi-k2.5 answers 410 (deprecated), gemini-3.6-flash answers 400 (needs a model_region parameter nothing here sends).

    stream: boolean

    Supports stream: true — required for voice pipelines and studio chat.

    tools: boolean

    Accepts a tools array — required for any agent with tools.