Mzansi AI model update to qwen3.5

This commit is contained in:
2026-04-14 10:43:04 +02:00
parent 0f6c6e51ab
commit c855503edd
2 changed files with 3 additions and 4 deletions

View File

@@ -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 <think> 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"

View File

@@ -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(