settings
Some checks failed
Mirror to Gitea / git-sync (push) Has been cancelled

This commit is contained in:
2026-03-28 08:57:29 +02:00
parent 14ebb04c1c
commit 00d4461a92
5 changed files with 118 additions and 21 deletions

View File

@@ -9,7 +9,7 @@ namespace VisionAsist.Models;
public class Selector
{
private static List<OllamaMessage> _chatHistory = new();
public static string CurrentModel = "qwen3.5:4b";
public static string CurrentModel => SettingsManager.Current.OllamaModel;
public static event Action<string>? OnLogUpdate;
private static void UpdateUI(string text) => OnLogUpdate?.Invoke(text);