Providers | Min (tokens/s) | Max (tokens/s) | Avg (tokens/s) |
---|---|---|---|
Volcengine | 5.68 | 34.47 | 9.07 |
Theta | 47.54 | 62.43 | 56.54 |
Providers | Min (ms) | Max (ms) | Avg (ms) |
---|---|---|---|
Volcengine | 528 | 1061 | 853.24 |
Theta | 1074 | 57353 | 15156.75 |
pythonfrom openai import OpenAI client = OpenAI( base_url="https://zenmux.ai/api/v1", api_key="<ZenMux_API_KEY>", ) completion = client.chat.completions.create( model="moonshotai/kimi-k2-0711", messages=[ { "role": "user", "content": [ { "type": "text", "text": "What is in this image?" } ] } ] ) print(completion.choices[0].message.content)