Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# Multi-Agentic SQL Generator
|
2 |
|
3 |
The Multi-Agentic SQL Generator is a modular, multi-step system that translates natural language queries into SQL queries, validates and optimizes them, and then executes them against a SQLite database. The system leverages OpenAI's language models (via a LangGraph workflow) for query understanding, validation, and optimization. It also provides evaluation capabilities using RAGAS metrics (such as context precision and context recall) to assess performance and quality.
|
|
|
1 |
+
---
|
2 |
+
title: Multi-Agentic SQL Generator
|
3 |
+
sdk: gradio
|
4 |
+
app_file: app.py
|
5 |
+
license: apache-2.0
|
6 |
+
tags:
|
7 |
+
- sql
|
8 |
+
- openai
|
9 |
+
- multi-agent
|
10 |
+
- demo
|
11 |
+
---
|
12 |
+
|
13 |
# Multi-Agentic SQL Generator
|
14 |
|
15 |
The Multi-Agentic SQL Generator is a modular, multi-step system that translates natural language queries into SQL queries, validates and optimizes them, and then executes them against a SQLite database. The system leverages OpenAI's language models (via a LangGraph workflow) for query understanding, validation, and optimization. It also provides evaluation capabilities using RAGAS metrics (such as context precision and context recall) to assess performance and quality.
|