feat(ai): add ai-coder model (qwen3-coder)
This commit is contained in:
parent
e5af5047d8
commit
e082f75ea8
3 changed files with 9 additions and 1 deletions
5
ai-coder.sh
Normal file
5
ai-coder.sh
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
if ! [ "$2" = "" ]; then
|
||||||
|
ollama run qwen3-coder:30b "$@"
|
||||||
|
else
|
||||||
|
ollama run qwen3-coder:30b
|
||||||
|
fi
|
2
ai.sh
2
ai.sh
|
@ -6,5 +6,5 @@ You are an expert virtual assistant fluent in English. Act as a smart and profes
|
||||||
if ! [ "$2" = "" ]; then
|
if ! [ "$2" = "" ]; then
|
||||||
ollama run deepseek-r1:8b "$prompt... beginning prompt... $@" --hidethinking
|
ollama run deepseek-r1:8b "$prompt... beginning prompt... $@" --hidethinking
|
||||||
else
|
else
|
||||||
ollama run deepseek-r1:8b
|
ollama run deepseek-r1:8b --hidethinking
|
||||||
fi
|
fi
|
||||||
|
|
3
ayo.sh
3
ayo.sh
|
@ -70,6 +70,9 @@ case $1 in
|
||||||
|
|
||||||
## SCRIPTS
|
## SCRIPTS
|
||||||
|
|
||||||
|
ai-coder)
|
||||||
|
. ${scripts_dir}/ai-coder.sh "$@"
|
||||||
|
;;
|
||||||
ai)
|
ai)
|
||||||
. ${scripts_dir}/ai.sh "$@"
|
. ${scripts_dir}/ai.sh "$@"
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in a new issue