feat(ai): add ai-coder model (qwen3-coder)

This commit is contained in:
Ayo Ayco 2025-08-23 11:47:34 +02:00
parent e5af5047d8
commit e082f75ea8
3 changed files with 9 additions and 1 deletions

5
ai-coder.sh Normal file
View file

@ -0,0 +1,5 @@
if ! [ "$2" = "" ]; then
ollama run qwen3-coder:30b "$@"
else
ollama run qwen3-coder:30b
fi

2
ai.sh
View file

@ -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

3
ayo.sh
View file

@ -70,6 +70,9 @@ case $1 in
## SCRIPTS
ai-coder)
. ${scripts_dir}/ai-coder.sh "$@"
;;
ai)
. ${scripts_dir}/ai.sh "$@"
;;