Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
KoboldAI
GitHub Repository: KoboldAI/KoboldAI-Client
Path: blob/main/play.sh
471 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