Spaces:
Sleeping
Sleeping
File size: 174 Bytes
e7a2ae9 |
1 2 3 4 5 6 7 8 9 |
#!/bin/bash
# Start the background task
ollama serve &
ollama pull mistral:7b > /dev/null 2>&1
ollama pull llama3:8b > /dev/null 2>&1
# Start the Gradio app
python main.py |