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