feat: new cozy script; add comment on ollama_remote_host
- add cozy.pub local server script - add cozy script
This commit is contained in:
parent
e55a172b3e
commit
9e44a05574
3 changed files with 10 additions and 1 deletions
3
ayo.sh
3
ayo.sh
|
@ -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
4
cozy.sh
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/bash
|
||||
|
||||
cd $HOME/Projects/cozy
|
||||
pnpm run preview
|
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue