Spaces:
Build error
Build error
File size: 198 Bytes
8b2f332 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/bin/bash
# Start ollama server
echo "Starting ollama server"
ollama serve &
sleep 1
# Pull the phi3 model
echo "Pulling phi3 model"
ollama pull phi3
sleep 5
# Run the run.sh script
bash run.sh |