GPT Live Transcribe
OpenAI logo

GPT Live Transcribe

gpt-live-transcribellms.txt
OpenAI
New

Pricing

Pricing
$2$0

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="gpt-live-transcribe",
        messages=[
          {
            "role": "user",
            "content": "Hello, how are you?"
          }
        ],
        max_tokens=1024,
        stream=False,
    )
    
    print(response.choices[0].message.content)

    Frequently asked questions

    How do I call GPT Live Transcribe via API?

    GPT Live Transcribe is available through the AIHubMix unified API. The API is OpenAI-compatible: point your OpenAI SDK at https://aihubmix.com/v1, use your AIHubMix API key, and set the model name to gpt-live-transcribe — no other code changes needed.