Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions web/src/llm-api/fireworks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ const FIREWORKS_MODEL_MAP: Record<string, string> = {
'z-ai/glm-5.1': 'accounts/fireworks/models/glm-5p1',
}

/** Models that stay limited to freebuff deployment hours even on serverless.
* Kimi/DeepSeek now run 24/7 via the freebuff selector; only legacy GLM 5.1
* is left under the deployment-hours gate so old clients hitting it during
* off-hours get a clear `model_unavailable` instead of a serverless surprise. */
const FIREWORKS_HOURS_GATED_MODELS = new Set<string>(['z-ai/glm-5.1'])
/** Models that stay limited to freebuff deployment hours even on serverless. */
const FIREWORKS_HOURS_GATED_MODELS = new Set<string>([
'moonshotai/kimi-k2.6',
'z-ai/glm-5.1',
])

/** Flag to enable custom Fireworks deployments (set to false to use global API only) */
const FIREWORKS_USE_CUSTOM_DEPLOYMENT = true
Expand Down
Loading