feat: new cozy script; add comment on ollama_remote_host

- add cozy.pub local server script
- add cozy script
This commit is contained in:
Ayo Ayco 2025-08-26 11:27:50 +02:00
parent e55a172b3e
commit 9e44a05574
3 changed files with 10 additions and 1 deletions

3
ayo.sh
View file

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

4
cozy.sh Normal file
View file

@ -0,0 +1,4 @@
#!/usr/bin/bash
cd $HOME/Projects/cozy
pnpm run preview

View file

@ -4,7 +4,9 @@ archive_dir="${HOME}/Notes/Archive"
scripts_dir="${HOME}/Projects/scripts"
editor="vim"
ollama_remote_host="http://remote-ollama-server" # or IP
# Ollama host URL or IP; for fully local, leave empty or comment out
ollama_remote_host="http://remote-ollama-server"
coder="coder:latest"
coder_modelfile="${HOME}/Projects/llm-prompts/Modelfile-coder-lite"