-
Notifications
You must be signed in to change notification settings - Fork 57
Add BlazeRail to the AI gateway benchmarks (Anthropic, Gemini, Kimi families) #361
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -207,6 +207,22 @@ export const providers: AIGatewayProviderConfig[] = [ | |
| }, | ||
| reasoningCountsAsFirstToken: true, | ||
| }, | ||
| { | ||
| // BlazeRail: OpenAI-compatible /v1/chat/completions. moonshotai/kimi-k3 is | ||
| // BlazeRail-s public id for the model; routing picks among its five live | ||
| // upstreams (CrofAI, DeepInfra, Wafer, Moonshot AI, Modal) by measured | ||
| // latency and price, which is the product behavior being benchmarked - | ||
| // same posture as the other multi-upstream gateways in this family. | ||
| name: 'blazerail', | ||
| requiredEnvVars: ['BLAZERAIL_API_KEY'], | ||
| wireFormat: 'openai', | ||
| model: 'moonshotai/kimi-k3', | ||
| host: 'api.blazerail.com', | ||
| path: '/v1/chat/completions', | ||
| buildHeaders: () => ({ | ||
| Authorization: `Bearer ${process.env.BLAZERAIL_API_KEY}`, | ||
| }), | ||
| }, | ||
|
Comment on lines
+216
to
+225
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔴 BlazeRail Kimi TTFT measures first visible token, not reasoning This entry omits Was this helpful? React with 👍 or 👎 to provide feedback. |
||
| { | ||
| name: 'novita', | ||
| requiredEnvVars: ['NOVITA_API_KEY'], | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 BlazeRail Kimi requests send a rejected temperature
This entry omits
extraBody, so the request keeps the defaulttemperature: 0frombuildRequestBody(benchmarks/ai-gateway/phase-probe.ts:82). Every sibling Kimi entry strips it withtemperature: undefinedbecause kimi-k3 rejects any temperature but 1, so every BlazeRail Kimi iteration fails.Was this helpful? React with 👍 or 👎 to provide feedback.