Spaces:
Sleeping
Sleeping
File size: 253 Bytes
8bf4d58 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/bin/bash
# Script to start the Streamlit UI
cd "$(dirname "$0")/.."
echo "Starting Agentic RAG Streamlit UI..."
echo "UI will be available at http://localhost:8501"
echo "Press Ctrl+C to stop the server"
echo ""
streamlit run ui/streamlit_app.py
|