all repos — nixfiles @ 31234b2c5c5e04970db489a3df624651bfea7ec2

System and user configuration, managed by nix and home-manager

marvin: update ollama settings
Alan Pearce alan@alanpearce.eu
Thu, 20 Mar 2025 10:08:46 +0100
commit

31234b2c5c5e04970db489a3df624651bfea7ec2

parent

71f2522de37d35da292ff8d061743fe55d24f0b6

1 files changed, 6 insertions(+), 1 deletions(-)

jump to
M user/marvin.nixuser/marvin.nix
@@ -32,6 +32,10 @@   home.sessionPath = [
     "/Library/Developer/CommandLineTools/usr/bin"
   ];
+  home.sessionVariables = {
+    OLLAMA_API_BASE = "http://localhost:11434";
+  };
+
   launchd.agents = {
     ollama = {
       enable = true;
@@ -44,8 +48,9 @@ StandardOutPath = "/Users/alan/Library/Logs/ollama.log";         StandardErrorPath = "/Users/alan/Library/Logs/ollama.log";
         EnvironmentVariables = {
           OLLAMA_HOST = "[::]:11434";
-          OLLAMA_KEEP_ALIVE = "-1"; # keep models in memory forever
+          OLLAMA_KEEP_ALIVE = "43200"; # keep models in memory for half a day
           OLLAMA_FLASH_ATTENTION = "1"; # significantly reduce memory usage as the context size grows
+          OLLAMA_CONTEXT_LENGTH = "131072";
         };
       };
     };