From 934044f73549cbc2a94e7888af172cc6a4ab743c Mon Sep 17 00:00:00 2001 From: Raiyan Hasan Date: Wed, 20 Nov 2024 21:47:43 +0530 Subject: [PATCH] console message removed --- app/lib/.server/llm/stream-text.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/app/lib/.server/llm/stream-text.ts b/app/lib/.server/llm/stream-text.ts index dba5a610..0a9c8e2d 100644 --- a/app/lib/.server/llm/stream-text.ts +++ b/app/lib/.server/llm/stream-text.ts @@ -72,7 +72,6 @@ export function streamText( modelDetails && modelDetails.maxTokenAllowed ? Math.min(MAX_TOKENS, modelDetails.maxTokenAllowed) : MAX_TOKENS; - console.log(dynamicMaxTokens) return _streamText({ model: getModel(currentProvider, currentModel, env, apiKeys),