Providers | Min (tokens/s) | Max (tokens/s) | Avg (tokens/s) |
---|---|---|---|
Moonshot AI | 4.59 | 13.61 | 5.67 |
Providers | Min (ms) | Max (ms) | Avg (ms) |
---|---|---|---|
Moonshot AI | 1411 | 2665 | 1631.52 |
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-0905", messages=[ { "role": "user", "content": [ { "type": "text", "text": "What is in this image?" } ] } ] ) print(completion.choices[0].message.content)