Spaces:
Running
Running
File size: 296 Bytes
dbd33b2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
#!/bin/bash
# Start Ollama
ollama serve &
# Wait for Ollama to start
sleep 10
# Run Phi model to ensure it's loaded
ollama run phi "hello" &
# Generate ground truth
python generate_ground_truth.py
# Run RAG evaluation
python rag_evaluation.py
# Start the Streamlit app
streamlit run main.py |