Spaces:
Sleeping
Sleeping
File size: 328 Bytes
37673ad 01330e7 d5ad3d6 41c70e5 37673ad 2fb3a13 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/bin/bash
# Start the Ollama server in the background
ollama serve &
# Wait for the server to be ready
sleep 5
# Pull the necessary models
#ollama pull deepseek-r1:1.5b
#ollama pull llama3.2:1b
ollama pull granite-embedding
ollama pull nomic-embed-text
ollama pull gemma3:1b
# Keep the container running
tail -f /dev/null
|