The supported model
Model and context length for Spark API support:
Spark Models
Platform | Model Identifier | Notes |
---|---|---|
Spark | spark-V1.5 | |
Spark | spark-V2.0 | |
Spark | spark-V3.0 |
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="spark-V1.5 ",
)
print(chat_completion.choices[0].message.content)