Skip to content

    PaddleOCR-VL 1.5

    Vision

    PaddleOCR-VL

    PaddleOCR-VL 1.5 on FlexAI: Baidu Vision (OCR), Apache 2.0 license, served via the OpenAI-compatible Token Factory at the live market-tracked rate.

    Pricing

    Input

    $0.126 / M tokens

    Output

    $0.72 / M tokens

    Pricing source

    Context

    16K tokens

    API endpoint

    /v1/chat/completions

    Compatibility

    OpenAI

    Parameters

    0.9B

    License

    Apache 2.0

    Hardware

    H100

    Quantization

    BF16

    Estimate your monthly cost

    M tokens
    M tokens
    10M × $0.126/M input$1.26
    2M × $0.72/M output$1.44
    Estimated monthly cost$2.7

    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="PaddleOCR-VL",
        messages=[{
            "role": "user",
            "content": [
                {"type": "text", "text": "What's in this image?"},
                {"type": "image_url", "image_url": {"url": "https://example.com/photo.jpg"}},
            ],
        }],
    )
    
    print(response.choices[0].message.content)