8 lines
143 B
Bash
Executable file
8 lines
143 B
Bash
Executable file
#! /bin/bash
|
|
|
|
if [[ -z $(pidof ollama) ]]; then
|
|
ollama serve &>/dev/null &
|
|
disown
|
|
fi
|
|
|
|
/usr/bin/env python3 /Users/sij/AI/osh/osh.py $@
|