1
0
Fork 0
This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
librechat-mistral/ollama/bootstrap.sh

11 lines
107 B
Bash
Raw Normal View History

2024-02-03 03:27:22 +00:00
#!/bin/bash -x
ollama serve &
sleep 1
for model in ${@:-mistral}; do
ollama pull "$model"
done
wait