The supported model

Model and context length for Google API support:

Baichuan Models

PlatformModel IdentifierNotes
Googlegoogle/gemma-2b-it
Googlegoogle/gemma-7b-it
Googlegemma-7b-it
from openai import OpenAI

client = OpenAI(
    api_key = "Own API key",
    base_url = "https://api.zgiai.com/v1"
)

chat_completion = client.chat.completions.create(
    messages=[
        {
            "role": "user",
            "content": "Who are you?",
        }
    ],
    model="google/gemma-2b-it",
)
print(chat_completion.choices[0].message.content)

Was this page helpful?