diff --git a/mih_ui/lib/mih_providers/mzansi_ai_provider.dart b/mih_ui/lib/mih_providers/mzansi_ai_provider.dart index 57ba3280..7981c6bc 100644 --- a/mih_ui/lib/mih_providers/mzansi_ai_provider.dart +++ b/mih_ui/lib/mih_providers/mzansi_ai_provider.dart @@ -17,11 +17,10 @@ class MzansiAiProvider extends ChangeNotifier { }) { ollamaProvider = OllamaProvider( baseUrl: "${AppEnviroment.baseAiUrl}/api", - model: AppEnviroment.getEnv() == "Prod" - ? 'qwen3-vl:8b-instruct' - : "qwen3-vl:2b-instruct", + model: AppEnviroment.getEnv() == "Prod" ? "qwen3.5:9b" : "qwen3.5:0.8b", think: false, systemPrompt: "---INSTRUCTION START---\n" + // "Respond concisely. Do not include any tags or internal monologues./n" "You are Mzansi AI, a helpful and friendly AI assistant running on the 'MIH App'.\n" "The MIH App was created by 'Mzansi Innovation Hub', a South African-based startup company." "Your primary purpose is to assist users by answering general questions and helping with creative writing tasks or any other task a user might have for you.\n" diff --git a/mih_ui/lib/mih_providers/ollama_provider.dart b/mih_ui/lib/mih_providers/ollama_provider.dart index 16e6942f..31e7dc78 100644 --- a/mih_ui/lib/mih_providers/ollama_provider.dart +++ b/mih_ui/lib/mih_providers/ollama_provider.dart @@ -115,7 +115,7 @@ class OllamaProvider extends LlmProvider with ChangeNotifier { request: GenerateChatCompletionRequest( model: _model, messages: allMessages, - think: _think, + think: _think ?? false, ), ); // final stream = _client.generateChatCompletionStream(