diff --git a/README.md b/README.md index e29207d..ec1e1f2 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ $ cp example.conf ~/ayo.conf 3\. Install some dependencies 1. [Typora](https://typora.io) - used as an alternative editor for notes (using flag `-t`) 1. `timeout` - install on mac via coreutils: `brew install coreutils` +1. `ollama` - running a locall LLM via ollama. See [installation on linux](https://ollama.com/download/linux) ## Scripts diff --git a/ai.sh b/ai.sh new file mode 100644 index 0000000..e4a911b --- /dev/null +++ b/ai.sh @@ -0,0 +1 @@ +ollama run llama3:8b diff --git a/ayo.sh b/ayo.sh index 41ce0f7..ee3bbbe 100755 --- a/ayo.sh +++ b/ayo.sh @@ -70,6 +70,9 @@ case $1 in ## SCRIPTS + ai) + . ${scripts_dir}/ai.sh $2 $3 $4 $5 $6 $7 $8 $9 + ;; m | mail) . ${scripts_dir}/mail.sh $2 $3 $4 $5 $6 $7 $8 $9 ;;