






Gemini-3-Flash-Preview




from openai import OpenAI
client = OpenAI(
base_url="https://zenmux.ai/api/v1",
api_key="<ZENMUX_API_KEY>"
)
completion = client.chat.completions.create(
model="qwen/qwen3-max",
messages=[
{
"role": "user",
"content": "What is the meaning of life?"
}
]
)
print(completion.choices[0].message.content)
