Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
koboldai
GitHub Repository: koboldai/koboldai-client
Path: blob/main/play.sh
935 views
1
#!/bin/bash
2
if [ ! -f "runtime/envs/koboldai/bin/python" ]; then
3
./install_requirements.sh cuda
4
fi
5
bin/micromamba run -r runtime -n koboldai python aiserver.py $*
6
7