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