Providers | Min (tokens/s) | Max (tokens/s) | Avg (tokens/s) |
---|---|---|---|
Theta | 39.01 | 178.1 | 138.91 |
Providers | Min (ms) | Max (ms) | Avg (ms) |
---|---|---|---|
Theta | 279 | 838 | 405.56 |
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/ring-flash-2.0", messages=[ { "role": "user", "content": [ { "type": "text", "text": "What is in this image?" } ] } ] ) print(completion.choices[0].message.content)