From 5e47f12b043158f3d4dbb1856a93da5e02bd9762 Mon Sep 17 00:00:00 2001 From: Ayo Date: Fri, 10 Oct 2025 21:04:30 +0200 Subject: [PATCH] feat(ai): hide thinking on CLI --- ai-coder.sh | 2 +- ai.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ai-coder.sh b/ai-coder.sh index 9af7970..b597495 100755 --- a/ai-coder.sh +++ b/ai-coder.sh @@ -26,7 +26,7 @@ if ! [ "$other_args" = "" ]; then typora $tempfile > /dev/null 2>/dev/null & else # If no -t flag, just run the command normally - OLLAMA_HOST=$host ollama run $model "$other_args" + OLLAMA_HOST=$host ollama run $model "$other_args" --hidethinking fi fi diff --git a/ai.sh b/ai.sh index b454ede..52be16b 100755 --- a/ai.sh +++ b/ai.sh @@ -57,7 +57,7 @@ if ! [ "$other_args" = "" ]; then typora $tempfile > /dev/null 2>/dev/null & else # If no -t flag, just run the command normally - OLLAMA_HOST=$host ollama run $model "$other_args" + OLLAMA_HOST=$host ollama run $model "$other_args" --hidethinking fi fi