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.
This commit is contained in:
n4ze3m 2024-09-30 10:28:45 +05:30
parent efec675b9a
commit caeb923d00

View File

@ -36,7 +36,6 @@ export const pageAssistModel = async ({
const isCustom = isCustomModel(model) const isCustom = isCustomModel(model)
console.log("isCustom", isCustom, model)
if (isCustom) { if (isCustom) {
const modelInfo = await getModelInfo(model) const modelInfo = await getModelInfo(model)