Spaces:
Build error
Build error
File size: 304 Bytes
d6611b3 62e443b 22258cd d6611b3 62e443b 5ad3a62 d6611b3 62e443b 8dd4f83 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#!/bin/bash
echo "Starting Ollama server..."
ollama serve &
echo "Waiting for Ollama server to be active..."
while ! ollama list | grep -q 'NAME'; do
sleep 1
done
echo "Pulling the specified model..."
ollama pull "${MODEL_NAME}"
echo "Model pulled successfully. Keeping the server running..."
wait
|