File size: 262 Bytes
a4b1977 8791f27 a4b1977 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/bin/bash
# Start ollama server in the background
ollama serve &
# Wait for the server to be ready
sleep 10
# Execute ollama pull commands
ollama pull gemma:7b
ollama pull bakllava
# Run the Python script
python3 main.py
# Keep the container running
wait
|