Learnlm 1.5 Pro Experimental
Google logo

Learnlm 1.5 Pro Experimental

learnlm-1.5-pro-experimental
Google

Pricing

  • Input Tokens: $1.250 /M tokens
  • Output Tokens: $5.000 /M tokens

Input Modalities

    Try this model

    Python
    import os
    from openai import OpenAI
    
    client = OpenAI(
        api_key=os.environ["AIHUBMIX_API_KEY"],
        base_url="https://aihubmix.com/v1",
    )
    
    response = client.chat.completions.create(
        model="learnlm-1.5-pro-experimental",
        messages=[
          {
            "role": "user",
            "content": "Hello, how are you?"
          }
        ],
        max_tokens=1024,
        stream=False,
    )
    
    print(response.choices[0].message.content)

    Frequently asked questions

    How much does Learnlm 1.5 Pro Experimental cost?

    On AIHubMix, Learnlm 1.5 Pro Experimental costs $1.25 per million input tokens and $5 per million output tokens.