Spaces:
Sleeping
Sleeping
File size: 344 Bytes
e7a2ae9 d473058 95888be 861a9e6 e7a2ae9 |
1 2 3 4 5 6 7 8 9 10 11 12 |
#!/bin/bash
ollama serve &
ollama pull mistral:7b > /dev/null 2>&1
ollama pull llama3:8b > /dev/null 2>&1
ollama pull gemma:2b > /dev/null 2>&1
ollama pull gemma:7b > /dev/null 2>&1
ollama create mistral4k:7b --file /home/user/app/mistral7b.Modelfile
ollama create llama38k:8b --file /home/user/app/llama38b.Modelfile
python main.py |