- Open Command Prompt/PowerShell
- Navigate to project:
cd "chatbot-using-rasa" - Activate virtual environment:
venv\Scripts\activate - Run startup script:
run_chatbot.bat - Wait for all servers to start
- Open browser: http://localhost:8000
CHATBOTPRO/
├── venv/ # Virtual environment
├── models/ # Trained Rasa models
├── data/ # Training data
├── actions/ # Custom actions
├── main.py # FastAPI server
├── index.html # Chat interface
├── run_chatbot.bat # Startup script
└── config.yml # Rasa configuration
- Always activate virtual environment first
- Start servers in order: Rasa → Actions → FastAPI
- Wait between starting servers
- Access via localhost:8000 (not 0.0.0.0:8000)