A Streamlit-based user interface for the Docs ChatBot application.
- Python 3.8 or higher
- pip (Python package installer)
- Create a virtual environment (recommended):
python -m venv venv
source venv/bin/activate # On Windows, use: venv\Scripts\activate
- Install the required packages:
pip install -r requirements.txt
-
Make sure your Docs ChatBot API is running on
http://localhost:8000
-
Start the Streamlit application:
streamlit run app.py
- Open your web browser and navigate to the URL shown in the terminal (typically
http://localhost:8501
)
- Clean and intuitive chat interface
- Real-time chat history
- API status monitoring
- Responsive design
- Error handling for API communication
The application expects the following API endpoints to be available:
POST /chat
- Send chat messages and receive responsesGET /health
- Check API health status
Make sure your API is running and accessible at http://localhost:8000
before starting the Streamlit application.