Providers | Min (tokens/s) | Max (tokens/s) | Avg (tokens/s) |
---|---|---|---|
Theta | 11.41 | 294.83 | 76.60 |
Providers | Min (ms) | Max (ms) | Avg (ms) |
---|---|---|---|
Theta | 259 | 674 | 468.25 |
pythonfrom openai import OpenAI client = OpenAI( base_url="https://zenmux.ai/api/v1", api_key="<ZenMux_API_KEY>", ) completion = client.chat.completions.create( model="inclusionai/ling-mini-2.0", messages=[ { "role": "user", "content": [ { "type": "text", "text": "What is in this image?" } ] } ] ) print(completion.choices[0].message.content)