Providers | Min (tokens/s) | Max (tokens/s) | Avg (tokens/s) |
---|---|---|---|
Theta | 46.81 | 117.61 | 88.79 |
Providers | Min (ms) | Max (ms) | Avg (ms) |
---|---|---|---|
Theta | 283 | 671 | 463.64 |
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-flash-2.0", messages=[ { "role": "user", "content": [ { "type": "text", "text": "What is in this image?" } ] } ] ) print(completion.choices[0].message.content)