Skip to content

Commit 6871ae5

Browse files
committed
Reverts context window
1 parent f38592f commit 6871ae5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/providers/fetchers/unbound.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export async function getUnboundModels(apiKey?: string | null): Promise<Record<s
2020
for (const [modelId, model] of Object.entries(rawModels)) {
2121
const modelInfo: ModelInfo = {
2222
maxTokens: model?.maxTokens ? parseInt(model.maxTokens) : undefined,
23-
contextWindow: model?.contextWindow ? parseInt(model.contextWindow) : 128_000,
23+
contextWindow: model?.contextWindow ? parseInt(model.contextWindow) : 0,
2424
supportsImages: model?.supportsImages ?? false,
2525
supportsPromptCache: model?.supportsPromptCaching ?? false,
2626
supportsComputerUse: model?.supportsComputerUse ?? false,

0 commit comments

Comments
 (0)