You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
updateStatus(`🦙 Using existing Ollama connection (${currentProvider.model})!`);
2296
+
addChatMessage('system',`🦙 Using existing Ollama connection! Model: ${currentProvider.model}. Fully local processing with GGUF models - no API costs.`);
2297
+
2298
+
return;
2299
+
}
2300
+
}
2301
+
2273
2302
// Get custom URL from input field, fallback to default
thrownewError('Ollama session is incomplete. Missing baseURL or model. Please reconnect.');
1544
+
}
1545
+
1523
1546
// Use simple chat format for general/RAG responses
1524
1547
constchatPrompt=`<|im_start|>system
1525
1548
You are a helpful AI assistant. Provide clear, accurate, and informative responses based on the given context. Always respond in plain text format.<|im_end|>
@@ -1561,7 +1584,7 @@ ${userMessage}<|im_end|>
1561
1584
content=data.response||'';
1562
1585
1563
1586
}else{
1564
-
thrownewError('Only Ollama provider is currently supported for general/research generation');
1587
+
thrownewError(`Provider '${this.aiSession.provider}' is not currently supported for general/research generation`);
0 commit comments