We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f38592f commit 6871ae5Copy full SHA for 6871ae5
src/api/providers/fetchers/unbound.ts
@@ -20,7 +20,7 @@ export async function getUnboundModels(apiKey?: string | null): Promise<Record<s
20
for (const [modelId, model] of Object.entries(rawModels)) {
21
const modelInfo: ModelInfo = {
22
maxTokens: model?.maxTokens ? parseInt(model.maxTokens) : undefined,
23
- contextWindow: model?.contextWindow ? parseInt(model.contextWindow) : 128_000,
+ contextWindow: model?.contextWindow ? parseInt(model.contextWindow) : 0,
24
supportsImages: model?.supportsImages ?? false,
25
supportsPromptCache: model?.supportsPromptCaching ?? false,
26
supportsComputerUse: model?.supportsComputerUse ?? false,
0 commit comments