From e082f75ea887e4bd19c6aa2ad107ccee73c6a005 Mon Sep 17 00:00:00 2001 From: Ayo Date: Sat, 23 Aug 2025 11:47:34 +0200 Subject: [PATCH] feat(ai): add ai-coder model (qwen3-coder) --- ai-coder.sh | 5 +++++ ai.sh | 2 +- ayo.sh | 3 +++ 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 ai-coder.sh diff --git a/ai-coder.sh b/ai-coder.sh new file mode 100644 index 0000000..9e64b7d --- /dev/null +++ b/ai-coder.sh @@ -0,0 +1,5 @@ +if ! [ "$2" = "" ]; then + ollama run qwen3-coder:30b "$@" +else + ollama run qwen3-coder:30b +fi diff --git a/ai.sh b/ai.sh index b19dae3..6229308 100644 --- a/ai.sh +++ b/ai.sh @@ -6,5 +6,5 @@ You are an expert virtual assistant fluent in English. Act as a smart and profes if ! [ "$2" = "" ]; then ollama run deepseek-r1:8b "$prompt... beginning prompt... $@" --hidethinking else - ollama run deepseek-r1:8b + ollama run deepseek-r1:8b --hidethinking fi diff --git a/ayo.sh b/ayo.sh index c7a5980..4280c1e 100755 --- a/ayo.sh +++ b/ayo.sh @@ -70,6 +70,9 @@ case $1 in ## SCRIPTS + ai-coder) + . ${scripts_dir}/ai-coder.sh "$@" + ;; ai) . ${scripts_dir}/ai.sh "$@" ;;