LangChain SQL Chatbot: Query Databases with AI
š Interact with SQL databases using natural language! This open-source Streamlit app leverages LangChain and Groq Llama3 to enable conversational querying of SQLite, PostgreSQL, and MySQL databases.
Features
ā
Chat with your database using AI
ā
Supports SQLite, PostgreSQL, and MySQL
ā
Uses LangChain SQL Agent for intelligent query generation
ā
Secure API Key input for Groq Llama3 model
ā
Optimized for performance with caching
Installation
1. Clone the Repository
git clone https://github.com/ravirch/Query-Databases-with-AI.git
cd langchain-sql-chatbot
2. Create a Virtual Environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
3. Install Dependencies
pip install -r requirements.txt
4. Run the Streamlit App
streamlit run app.py
Configuration
Database Connection
- SQLite: Uses
student.db
by default.
- PostgreSQL: Enter host, user, password, and database name in the sidebar.
- MySQL: Similar setup to PostgreSQL.
API Key
You need a Groq API Key to use the Llama3 model. Enter it in the sidebar.
Usage
- Select a database from the sidebar.
- Provide credentials (if using PostgreSQL/MySQL).
- Enter your query in plain English (e.g., "Show top 10 students from student.db").
- The chatbot generates and executes the SQL query.
- View responses instantly in the chat interface.
Tech Stack
- Streamlit ā UI & Chatbot Interface
- LangChain ā SQL Agent for Query Processing
- Groq Llama3 ā AI-Powered Query Understanding
- SQLAlchemy ā Database Connection
- SQLite, PostgreSQL, MySQL ā Supported Databases