AgenticAI-RAG / scripts /start_api.sh
GreymanT's picture
Upload 80 files
8bf4d58 verified
raw
history blame contribute delete
273 Bytes
#!/bin/bash
# Script to start the API server
cd "$(dirname "$0")/.."
echo "Starting Agentic RAG API server..."
echo "API will be available at http://localhost:8000"
echo "Press Ctrl+C to stop the server"
echo ""
uvicorn api.main:app --reload --host 0.0.0.0 --port 8000