Spaces:
Paused
Paused
File size: 8,814 Bytes
d8ff681 b7c4fee 84b21bc d8ff681 b7c4fee d8ff681 84b21bc b7c4fee 1029219 b7c4fee 84b21bc 944a160 b7c4fee 84b21bc 944a160 1029219 d8ff681 2f64b1f d8ff681 b7c4fee 84b21bc b7c4fee 84b21bc b7c4fee d8ff681 944a160 d8ff681 944a160 d8ff681 b7c4fee d8ff681 b7c4fee 84b21bc b7c4fee 84b21bc b7c4fee d8ff681 b7c4fee 84b21bc d8ff681 944a160 814dc15 b7c4fee d8ff681 944a160 d8ff681 b7c4fee d8ff681 b7c4fee d8ff681 b7c4fee d8ff681 b7c4fee 84b21bc b7c4fee d8ff681 b7c4fee 1029219 b7c4fee d8ff681 82fb5aa b7c4fee 84b21bc b7c4fee d8ff681 b7c4fee |
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 |
from groq import Groq
from pydantic import BaseModel
import json
import gradio as gr
import pandas as pd
class ValidationStatus(BaseModel):
is_valid: bool
syntax_errors: list[str]
class SQLQueryGeneration(BaseModel):
query: str
query_type: str
tables_used: list[str]
estimated_complexity: str
execution_notes: list[str]
validation_status: ValidationStatus
table_schema: str
sample_data: str
execution_results: str
optimization_notes: list[str]
def parse_execution_results_to_dataframe(execution_results):
"""Convert text-based table results to pandas DataFrame"""
try:
lines = execution_results.strip().split('\n')
if len(lines) < 3:
return None
# Extract header
header_line = lines[0]
headers = [col.strip() for col in header_line.split('|')]
# Extract data rows (skip separator line)
data_rows = []
for line in lines[2:]:
if line.strip() and not line.strip().startswith('-'):
row = [cell.strip() for cell in line.split('|')]
if len(row) == len(headers):
data_rows.append(row)
if data_rows:
df = pd.DataFrame(data_rows, columns=headers)
return df
return None
except Exception as e:
print(f"Error parsing results: {e}")
return None
def generate_sql_query(api_key, user_query):
"""Generate SQL query from natural language using GROQ API"""
try:
if not api_key:
return "Error: Please enter your GROQ API key", "", "", "", None, ""
if not user_query:
return "Error: Please enter a query description", "", "", "", None, ""
client = Groq(api_key=api_key)
response = client.chat.completions.create(
model="moonshotai/kimi-k2-instruct-0905",
messages=[
{
"role": "system",
"content": """You are a SQL expert. Generate structured SQL queries from natural language descriptions with proper syntax validation and metadata.
After generating the SQL query, you must:
1. Create a sample SQL table schema based on the natural language description, including all necessary columns with appropriate data types
2. Populate the table with realistic sample data that demonstrates the query's functionality
3. Execute the generated SQL query against the sample table
4. Display the SQL table structure and data clearly
5. Show the query execution results in a pipe-delimited table format
IMPORTANT: The execution_results field must contain a properly formatted table with:
- Header row with column names separated by pipes (|)
- A separator row with dashes
- Data rows with values separated by pipes (|)
Example format:
column1 | column2 | column3
--------|---------|--------
value1 | value2 | value3
value4 | value5 | value6
Always present your response in this order:
- Generated SQL query with syntax explanation
- Table schema (CREATE TABLE statement)
- Sample data (INSERT statements or table visualization)
- Query execution results (in pipe-delimited table format)
- Any relevant notes about assumptions made or query optimization suggestions""",
},
{
"role": "user",
"content": user_query
},
],
response_format={
"type": "json_schema",
"json_schema": {
"name": "sql_query_generation",
"schema": SQLQueryGeneration.model_json_schema()
}
}
)
sql_query_generation = SQLQueryGeneration.model_validate(
json.loads(response.choices[0].message.content)
)
# Format validation status
validation_text = f"Valid: {sql_query_generation.validation_status.is_valid}\n"
if sql_query_generation.validation_status.syntax_errors:
validation_text += "Errors:\n" + "\n".join(
f"- {error}" for error in sql_query_generation.validation_status.syntax_errors
)
else:
validation_text += "No syntax errors found"
# Format metadata
metadata = f"""Query Type: {sql_query_generation.query_type}
Tables Used: {', '.join(sql_query_generation.tables_used)}
Complexity: {sql_query_generation.estimated_complexity}
Execution Notes:
{chr(10).join(f"- {note}" for note in sql_query_generation.execution_notes)}
Optimization Notes:
{chr(10).join(f"- {note}" for note in sql_query_generation.optimization_notes)}"""
# Convert execution results to DataFrame
results_df = parse_execution_results_to_dataframe(sql_query_generation.execution_results)
return (
sql_query_generation.query,
metadata,
sql_query_generation.table_schema,
sql_query_generation.sample_data,
results_df,
validation_text
)
except Exception as e:
error_msg = f"Error: {str(e)}"
return error_msg, "", "", "", None, ""
# Create Gradio interface
with gr.Blocks(title="SQL Query Generator", theme=gr.themes.Ocean()) as demo:
gr.Markdown(
"""
# 🗄️ Natural Language to SQL Query Generator
Convert your natural language descriptions into structured SQL queries with validation and execution results.
"""
)
with gr.Row():
with gr.Column():
api_key_input = gr.Textbox(
label="GROQ API Key",
type="password",
placeholder="Enter your GROQ API key here...",
info="Your API key is not stored and only used for this session"
)
query_input = gr.Textbox(
label="Natural Language Query",
placeholder="e.g., Find all the students who scored more than 90 out of 100",
lines=3,
value="Find all the students who scored more than 90 out of 100"
)
generate_btn = gr.Button("Generate SQL Query", variant="primary", size="lg")
gr.Examples(
examples=[
["Find all the students who scored more than 90 out of 100"],
["Get the top 5 customers by total purchase amount"],
["List all employees hired in the last 6 months"],
["Find products with price between $50 and $100"],
["Show average salary by department"]
],
inputs=query_input,
label="Example Queries"
)
with gr.Row():
with gr.Column():
sql_output = gr.Code(
label="Generated SQL Query",
language="sql",
lines=5
)
metadata_output = gr.Textbox(
label="Query Metadata",
lines=8
)
validation_output = gr.Textbox(
label="Validation Status",
lines=3
)
with gr.Row():
with gr.Column():
schema_output = gr.Code(
label="Table Schema",
language="sql",
lines=8
)
with gr.Column():
sample_data_output = gr.Code(
label="Sample Data",
language="sql",
lines=8
)
with gr.Row():
execution_output = gr.Dataframe(
label="📊 Execution Results",
headers=None,
datatype="str",
row_count=10,
col_count=None,
wrap=True,
interactive=False
)
generate_btn.click(
fn=generate_sql_query,
inputs=[api_key_input, query_input],
outputs=[
sql_output,
metadata_output,
schema_output,
sample_data_output,
execution_output,
validation_output
]
)
gr.Markdown(
"""
---
### How to use:
1. Enter your GROQ API key (get one from [console.groq.com](https://console.groq.com))
2. Type your natural language query description
3. Click "Generate SQL Query" to see the results
The app will provide:
- A validated SQL query
- Table schema and sample data
- Execution results in Excel-style table format
- Optimization suggestions
"""
)
if __name__ == "__main__":
demo.launch(share=True) |