File size: 5,228 Bytes
4956f0d e0560d9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 | ---
title: GenAI Text2SQL Analytics Assistant
emoji: π€
colorFrom: blue
colorTo: indigo
sdk: streamlit
sdk_version: "1.45.1"
app_file: app.py
pinned: false
license: mit
---
# π€ GenAI Text2SQL Analytics Assistant
An advanced Generative AI-powered analytics assistant that converts natural language questions into executable SQL queries and retrieves insights from a live relational database.
Built using LangChain, Groq LLMs, SQLAlchemy, SQLite, and Streamlit.
---
# π Features
- Natural Language to SQL Conversion
- Live Database Query Execution
- AI-Powered Business Analytics
- SQL Query Transparency
- Interactive Analytics Dashboard
- CSV Export Functionality
- Automatic SQL Cleaning & Validation
- Multi-table SQL Reasoning
- Conversational Analytics Experience
- Real-time Data Insights
---
# π§ How It Works
The application does not train a custom AI model.
Instead, it uses a Large Language Model (LLM) to:
1. Understand the user's business question
2. Generate optimized SQL queries dynamically
3. Execute queries on a live SQLite database
4. Return analytics results and business insights
---
# ποΈ Architecture
```text
User Query
β
LLM (Groq + LangChain)
β
SQL Query Generation
β
SQLite Database Execution
β
Analytics Results
β
AI Business Summary + Visualization
```
---
# π οΈ Tech Stack
| Category | Technology |
|---|---|
| LLM Provider | Groq |
| Framework | LangChain |
| Database | SQLite |
| ORM | SQLAlchemy |
| Frontend | Streamlit |
| Data Generation | Faker |
| Data Processing | Pandas |
| Language | Python |
---
# π Project Structure
```bash
TEXT2SQL-GENAI/
β
βββ agents/
β βββ sql_agent.py
β βββ langchain_sql_agent.py
β
βββ database/
β βββ create_db.py
β βββ seed_data.py
β βββ ecommerce.db
β
βββ prompts/
β βββ sql_prompt.py
β
βββ utils/
β βββ sql_utils.py
β βββ query_engine.py
β
βββ app.py
βββ requirements.txt
βββ .env
βββ README.md
```
---
# ποΈ Database Schema
The project uses a relational e-commerce database containing:
- Customers
- Products
- Employees
- Orders
- Order Items
The database was populated with synthetic business data using Faker.
---
# π Example Questions
```text
Top 5 products by revenue
```
```text
Which employee handled the most orders?
```
```text
Average order value by city
```
```text
Show revenue by product category
```
```text
Top customers by spending
```
---
# π₯ Advanced Features Implemented
## β
Schema-Aware Prompting
Injected database schema directly into prompts to improve SQL accuracy.
## β
SQL Cleaning
Automatically removes markdown formatting and cleans generated SQL.
## β
Error Handling & Retry Logic
Detects invalid SQL queries and retries with correction prompts.
## β
LangChain SQL Agent
Implemented autonomous SQL reasoning using LangChain SQL Agent.
## β
AI Business Summaries
Generates human-readable business insights from query results.
## β
Interactive Analytics Dashboard
Built using Streamlit with:
- Data tables
- SQL visibility
- CSV export
- Charts and visualizations
---
# π Sample Analytics Capabilities
- Revenue Analysis
- Customer Segmentation
- Product Performance
- Sales Trends
- Employee Performance Metrics
- Business Intelligence Reporting
---
# βοΈ Installation
## 1οΈβ£ Clone Repository
```bash
git clone <your_repo_url>
cd TEXT2SQL-GENAI
```
---
## 2οΈβ£ Create Virtual Environment
### Windows
```bash
python -m venv venv
venv\Scripts\activate
```
---
## 3οΈβ£ Install Dependencies
```bash
pip install -r requirements.txt
```
---
## 4οΈβ£ Configure Environment Variables
Create `.env`
```env
GROQ_API_KEY=your_api_key_here
```
---
# βΆοΈ Running The Project
## Step 1 β Create Database
```bash
python database/create_db.py
```
---
## Step 2 β Seed Database
```bash
python database/seed_data.py
```
---
## Step 3 β Run Streamlit App
```bash
streamlit run app.py
```
---
# π Key Learning Outcomes
- Generative AI Application Development
- Prompt Engineering
- LangChain Agent Workflows
- SQL Query Generation
- Database Integration with LLMs
- Conversational Analytics Systems
- Streamlit Dashboard Development
- AI-powered Business Intelligence
---
# π― Future Improvements
- PostgreSQL Support
- Authentication System
- Query History
- Role-Based Access Control
- Real-time Streaming Responses
- Data Upload & Auto Analysis
- Multi-turn Conversational Memory
- Advanced Chart Visualizations
---
# π Important Note
This project does not fine-tune or train an LLM.
Instead, it demonstrates:
- LLM orchestration
- schema-aware prompting
- live SQL generation
- autonomous database querying
- AI analytics workflows
which closely reflects real-world enterprise GenAI systems.
---
# π¨βπ» Author
Mohd Faizanullah
|