Skip to content

    GLM 4.5 Air

    Chat

    GLM-4.5-Air-FP8

    GLM 4.5 Air on FlexAI: Zhipu AI LLM, ChatGLM License, served via the OpenAI-compatible Token Factory at the live market-tracked rate.

    Pricing

    Input

    $0.113 / M tokens

    Output

    $0.765 / M tokens

    Pricing source

    Context

    128K tokens

    API endpoint

    /v1/chat/completions

    Compatibility

    OpenAI

    Parameters

    ~106B MoE (12B active)

    License

    ChatGLM License

    Hardware

    2× H100

    Quantization

    FP8

    Estimate your monthly cost

    M tokens
    M tokens
    10M × $0.113/M input$1.13
    2M × $0.765/M output$1.53
    Estimated monthly cost$2.66

    Estimate only, at the current market-tracked rate. Usage-based; no minimums.

    Get an API key

    Quick Start

    from openai import OpenAI
    
    client = OpenAI(
        base_url="https://tokens.flex.ai/v1",
        api_key="your-api-key",
    )
    
    response = client.chat.completions.create(
        model="GLM-4.5-Air-FP8",
        messages=[
            {"role": "user", "content": "Hello!"}
        ],
    )
    
    print(response.choices[0].message.content)