git clone https://github.com/Alvi19/LLM.git cd LLM
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
pip install fastapi uvicorn requests python-dotenv gradio ollama
curl -fsSL https://ollama.ai/install.sh | sh
For Windows: Download from https://ollama.ai/download and install manually
ollama pull llama3.2:1b
echo "GOOGLE_API_KEY=your_google_maps_api_key_here" > .env
ollama serve
uvicorn main:app --reload --host 0.0.0.0 --port 8000
python frontend.py