Talk to the data.
Get real answers, instantly.

AskDB connects to backend and lets anyone ask data related questions in plain English — no SQL needed.

QueryMind
How many new users signed up this month?

There were 1,284 new signupsin May 2025. That's up 18% from last month.

Query used
SELECT COUNT(*)
FROM users
WHERE created_at >= '2025-05-01'

What this project demonstrates

A look at the core technical skills behind this build.

Ask in plain English

The model is fine-tuned to understand natural language inputs and map them to the correct database query, handling ambiguous phrasing, varied sentence structures, and context.

Live backend integration

The app connects to a real database backend and fetches live data on every query. No hardcoded responses, no mock data, every answer reflects the actual state of the database.

See the query, trust the answer

Every AI response surfaces the exact query it ran underneath. This was a deliberate design choice to make the model's reasoning transparent and verifiable.

How it works under the hood

The technical flow from question to answer.

1. User Asks

The user types a question in plain English into the chat interface, for example, 'How many orders came in last week?'

2. AI Interprets

The fine-tuned model parses the question, determines intent, and constructs the appropriate database query to fetch the right data.

3. Answer Returned

The backend runs the query against the live database and the AI returns both a human-readable answer and the raw query for full transparency.