From 88253a179e776f164d91d5e7995bac5e48c5eead Mon Sep 17 00:00:00 2001 From: Nathan Schneider Date: Tue, 3 Feb 2026 13:58:38 -0700 Subject: [PATCH] Removed OLLAMA_MODELS env variable, now unnecessary --- .bash_aliases | 1 - .scripts/ai.sh | 1 - 2 files changed, 2 deletions(-) diff --git a/.bash_aliases b/.bash_aliases index ceac10c..08abf19 100644 --- a/.bash_aliases +++ b/.bash_aliases @@ -37,7 +37,6 @@ alias trash='~/.scripts/trash.sh' # AI agents llm models default gemma3 -export OLLAMA_MODELS=/var/lib/ollama/models alias c='llm -c' alias chat='llm -s "You are running locally in a terminal on a modestly resourced computer, so please keep responses concise and efficient. If necessary, provide brief options for further exploration before proceeding with them at any length."' # Uses default alias transcribe='llm -m qwen2.5vl "Transcribe the handwriting in the attached image into Markdown text with no other output." -a ' diff --git a/.scripts/ai.sh b/.scripts/ai.sh index 49a2154..095de7b 100644 --- a/.scripts/ai.sh +++ b/.scripts/ai.sh @@ -2,7 +2,6 @@ # Install ollama curl -fsSL https://ollama.com/install.sh | sh -# OLLAMA_MODELS variable is set in ~/.bash_aliases # Install llm pipx install llm