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',