An AI chatbot built with Langchain
TeslaAI-chatbot is a simple AI-powered chatbot application that leverages Python and Gradio to provide an interactive conversational interface. It’s ideal for experimenting with AI-driven chatbots, testing AI responses, and learning about building small AI GUI apps.
- Chatbot interface powered by Gradio for easy web-based interaction.
- Simple Python codebase (single language: Python) for ease of understanding and modification.
- Quick to set up and run — ideal for prototyping or educational purposes.
Make sure you have the following installed:
- Python 3.8 or higher
pip(or another Python package manager)- (Optional) Virtual environment tool such as
venvorvirtualenv
- Clone the repository:
git clone https://github.com/PR-1301/TeslaAI-chatbot.git cd TeslaAI-chatbot - Create and activate a virtual environment:
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
To start the chatbot interface, run:
python main.py