From caeb923d00da8db54aaff8acb5704954ae6883b7 Mon Sep 17 00:00:00 2001 From: n4ze3m Date: Mon, 30 Sep 2024 10:28:45 +0530 Subject: [PATCH] Fix: Remove debugging log statement Removed a debugging `console.log` statement that was printing the `isCustom` variable and the model name. This statement was no longer necessary and was potentially causing issues. --- src/models/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/models/index.ts b/src/models/index.ts index c33e312..d459e66 100644 --- a/src/models/index.ts +++ b/src/models/index.ts @@ -36,7 +36,6 @@ export const pageAssistModel = async ({ const isCustom = isCustomModel(model) - console.log("isCustom", isCustom, model) if (isCustom) { const modelInfo = await getModelInfo(model)