π§ Natural Language β SQL Generator App
This app converts natural language questions into SQL queries and runs them directly on your uploaded CSV data.
π Features
- Upload any CSV file
- Ask questions in plain English
- Auto-generates SQL queries
- Executes SQL and shows the result instantly
- Runs 100% on Hugging Face β no API keys required
π§© Tech Stack
- Python π
- Transformers (Hugging Face)
- Gradio (UI)
- SQLite + Pandas
π§ Model Used
mrm8488/t5-base-finetuned-wikiSQL
πͺ Example
Input:
Show employees older than 25
Output SQL:
SELECT * FROM data_table WHERE age > 25;