Providers | Min (tokens/s) | Max (tokens/s) | Avg (tokens/s) |
---|---|---|---|
Anthropic | 4.09 | 36.35 | 9.85 |
Amazon Bedrock | 2.73 | 26.34 | 15.61 |
Providers | Min (ms) | Max (ms) | Avg (ms) |
---|---|---|---|
Anthropic | 1996 | 2712 | 2179.60 |
Amazon Bedrock | 3595 | 12714 | 6812.33 |
pythonfrom openai import OpenAI client = OpenAI( base_url="https://zenmux.ai/api/v1", api_key="<ZenMux_API_KEY>", ) completion = client.chat.completions.create( model="anthropic/claude-sonnet-4.5", messages=[ { "role": "user", "content": [ { "type": "text", "text": "What is in this image?" } ] } ] ) print(completion.choices[0].message.content)