From 5a242c60a5d1e2520c43861224d05fcff0665fc2 Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Tue, 17 Jun 2025 18:02:02 +0200 Subject: [PATCH] versitile ooo --- home-modules/ollama.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home-modules/ollama.nix b/home-modules/ollama.nix index 5b32507..2be8876 100644 --- a/home-modules/ollama.nix +++ b/home-modules/ollama.nix @@ -16,10 +16,10 @@ if len(sys.argv) < 2: system_message = sys.argv[1] input_text = sys.stdin.read() try: - response = ollama.chat(model='llama3.1:8b', messages=[ + response = ollama.chat(model='gemma3:4b', messages=[ { 'role': 'system', - 'content': "You are a text transformer. Follow the folling instruction:\n\n" + system_message + "\n\nOnly output the transformed text. Do not add any addidional conversation around the output. Just the result.", + 'content': system_message, }, { 'role': 'user',