Providers | Min (tokens/s) | Max (tokens/s) | Avg (tokens/s) |
---|---|---|---|
Anthropic | 4.19 | 39.97 | 10.64 |
Vertex AI | 2.59 | 40.76 | 16.93 |
Amazon Bedrock | 23.46 | 35.73 | 29.64 |
Providers | Min (ms) | Max (ms) | Avg (ms) |
---|---|---|---|
Anthropic | 662 | 3199 | 1081.69 |
Vertex AI | 2032 | 35387 | 8714.00 |
Amazon Bedrock | 1653 | 2898 | 2077.50 |
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-3.5-sonnet", messages=[ { "role": "user", "content": [ { "type": "text", "text": "What is in this image?" } ] } ] ) print(completion.choices[0].message.content)