File size: 21,606 Bytes
12eff8e | 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 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 | """MorphSQL — Hugging Face Space (conversion-first, DS-friendly)."""
from __future__ import annotations
import inspect
import gradio as gr
from morphsql import __product_name__, __version__
from morphsql.ai.risk_model import train_and_save
from morphsql.eval.pairs import ensure_pairs_file
from demo.handlers import (
HERO_EXAMPLE,
PLAYGROUND_EXAMPLE_LABELS,
SOURCE_DROPDOWN,
TARGET_DROPDOWN,
analyze_sql_object_ui,
convert_for_ui,
convert_upload_for_ui,
copilot_chat,
get_leaderboard_md,
load_sql_from_upload,
on_example_selected,
run_behavior_rag,
run_eval_suite,
run_feature_migration,
run_workbench_ui,
submit_eval_score,
)
from demo.theme import CUSTOM_CSS, build_theme
SPACE_URL = "https://huggingface.co/spaces/dgvj-work/morphsql"
GITHUB_URL = "https://github.com/dgvj-work/morphsql"
# Soft-fail boot so the Space still loads if artifacts are regenerating
try:
ensure_pairs_file()
except Exception as exc: # pragma: no cover
print(f"[MorphSQL] pairs bootstrap skipped: {exc}")
try:
train_and_save()
except Exception as exc: # pragma: no cover
print(f"[MorphSQL] risk model bootstrap skipped: {exc}")
try:
_BOOT = convert_for_ui(HERO_EXAMPLE, "snowflake", "pandas")
except Exception as exc: # pragma: no cover
print(f"[MorphSQL] boot convert failed: {exc}")
_BOOT = (
"Paste SQL and click **Convert**.",
"",
"Ready",
f"[Space]({SPACE_URL})",
None,
None,
"# Convert SQL to get a notebook cell",
'from morphsql.ai import pipeline\nprint(pipeline("sql-migration")("SELECT 1", source="snowflake", target="pandas"))\n',
)
def _blocks_style_kwargs() -> dict:
"""Gradio 5 (HF Spaces): theme/css on Blocks. Gradio 6+: those moved to launch()."""
params = inspect.signature(gr.Blocks.__init__).parameters
kwargs: dict = {}
if "theme" in params:
kwargs["theme"] = build_theme()
if "css" in params:
kwargs["css"] = CUSTOM_CSS
return kwargs
def _launch_style_kwargs() -> dict:
"""Pass theme/css to launch() when Blocks no longer accepts them (Gradio 6+)."""
if "theme" in inspect.signature(gr.Blocks.__init__).parameters:
return {}
return {"theme": build_theme(), "css": CUSTOM_CSS}
def _chatbot(**kwargs):
"""Chatbot with type='messages' when supported (Gradio 5.x)."""
params = inspect.signature(gr.Chatbot.__init__).parameters
if "type" in params and "type" not in kwargs:
kwargs["type"] = "messages"
return gr.Chatbot(**kwargs)
def _build_demo() -> gr.Blocks:
with gr.Blocks(
title=f"{__product_name__} — SQL → pandas / PySpark",
**_blocks_style_kwargs(),
) as demo:
eval_state = gr.State(value={})
eval_category = gr.State(value="all")
gr.HTML(
f"""
<div class="header-block">
<div class="eyebrow">AI / ML · DATA SCIENCE · SQL → PANDAS / PYSPARK</div>
<h1>{__product_name__}</h1>
<p>Turn warehouse SQL into notebook-ready <strong>pandas</strong> or
<strong>PySpark</strong> — paste or upload a file, convert, then download
<code>.py</code> / <code>.sql</code> to your machine.</p>
</div>
"""
)
with gr.Tabs():
with gr.Tab("Convert"):
gr.Markdown(
"1. Choose input dialect + output · "
"2. Paste SQL, load an example, or **upload** a `.sql` / `.zip` · "
"3. **Convert** → preview + **download** to your machine"
)
example = gr.Dropdown(
choices=PLAYGROUND_EXAMPLE_LABELS,
value=PLAYGROUND_EXAMPLE_LABELS[0],
label="Load a data-science / AI example",
info="Fills SQL, converts, runs sample preview.",
)
with gr.Row(equal_height=True):
source = gr.Dropdown(
choices=SOURCE_DROPDOWN,
value="snowflake",
label="SQL is written for",
scale=2,
min_width=160,
)
target = gr.Dropdown(
choices=TARGET_DROPDOWN,
value="pandas",
label="Convert to",
scale=3,
min_width=220,
)
convert_btn = gr.Button(
"Convert",
variant="primary",
scale=1,
min_width=120,
elem_classes=["action-btn"],
)
with gr.Row(equal_height=False):
sql_upload = gr.File(
label="Upload SQL (.sql / .txt) or a .zip of SQL files",
file_types=[".sql", ".txt", ".ddl", ".zip"],
type="filepath",
scale=4,
min_width=280,
elem_classes=["sql-upload-box"],
)
with gr.Column(scale=1, min_width=180, elem_classes=["upload-action-col"]):
upload_convert_btn = gr.Button(
"Upload & Convert → Download",
variant="primary",
elem_classes=["action-btn", "upload-action-btn"],
)
status = gr.Textbox(
label="Status",
value=_BOOT[2],
interactive=False,
max_lines=1,
)
with gr.Row():
sql_in = gr.Textbox(
label="Input SQL",
value=HERO_EXAMPLE,
lines=12,
max_lines=24,
placeholder="Paste warehouse SQL, or upload a file above…",
)
sql_out = gr.Textbox(
label="Output code",
value=_BOOT[1],
lines=12,
max_lines=24,
)
with gr.Row():
download = gr.File(
label="Download converted file (.py / .sql / .zip)",
value=_BOOT[5],
elem_classes=["download-box"],
)
preview = gr.Dataframe(
label="Sample preview",
value=_BOOT[4],
wrap=True,
elem_classes=["preview-table"],
)
notes = gr.Markdown(value=_BOOT[0])
with gr.Accordion("Notebook starter cell", open=False):
notebook = gr.Code(
language="python",
value=_BOOT[6],
lines=10,
)
with gr.Accordion("Hugging Face pipeline API (AI / ML)", open=True):
gr.Markdown(
"Same style as `transformers.pipeline` — use in Colab, HF Jobs, or training scripts."
)
api_code = gr.Code(
language="python",
value=_BOOT[7],
lines=12,
)
share = gr.Markdown(value=_BOOT[3])
outs = [
sql_in,
source,
target,
notes,
sql_out,
status,
share,
preview,
download,
notebook,
api_code,
]
example.change(on_example_selected, inputs=[example], outputs=outs)
convert_outs = [
notes,
sql_out,
status,
share,
preview,
download,
notebook,
api_code,
]
convert_btn.click(
convert_for_ui,
inputs=[sql_in, source, target],
outputs=convert_outs,
)
sql_in.submit(
convert_for_ui,
inputs=[sql_in, source, target],
outputs=convert_outs,
)
# Upload: fill the editor immediately; button converts + refreshes download
sql_upload.change(
load_sql_from_upload,
inputs=[sql_upload, sql_in],
outputs=[sql_in],
)
upload_convert_outs = [
sql_in,
notes,
sql_out,
status,
share,
preview,
download,
notebook,
api_code,
]
upload_convert_btn.click(
convert_upload_for_ui,
inputs=[sql_upload, sql_in, source, target],
outputs=upload_convert_outs,
)
with gr.Tab("Guide"):
gr.Markdown(
f"""
## For AI / ML practitioners
MorphSQL is a **deterministic** SQL→pandas / PySpark codegen tool (not a chat LLM). Use it when you have
warehouse SQL for labels/features and want a Python frame for training or Spark jobs.
**Typical path**
1. Convert feature SQL → pandas or PySpark
2. Point `tables[...]` at parquet / `datasets` / warehouse extracts / Spark tables
3. Feed `result` into sklearn, XGBoost, Transformers, or Spark ML
## Why data scientists use this
Warehouse SQL often lives in BI tools. MorphSQL rewrites dialect quirks (NVL, ZEROIFNULL, dates)
into pandas or PySpark you can run in Jupyter / Colab / Databricks.
## Recommended workflow
1. Paste SQL, load an example, or **upload** a `.sql` / `.zip`
2. Choose **Convert to** (pandas / PySpark / Snowflake / BigQuery / dbt)
3. Click **Convert** or **Upload & Convert → Download**
4. Download the `.py` / `.sql` / `.zip` to your machine and replace synthetic tables with real data
## Output choices
| Convert to | Best for |
|---|---|
| **Python (pandas)** | Feature engineering, EDA, model training prep |
| **Python (PySpark)** | Large-scale Spark DataFrame transforms |
| **Snowflake / BigQuery SQL** | Keeping transforms in the warehouse |
| **dbt project** | Productionizing SQL into models |
## More tab (Lab)
| Tool | Use when |
|---|---|
| **Object assess** | Need risk/complexity scoring for one SQL object |
| **Repository workbench** | Scanning a SQL repo (sample or zip) with lineage + validation |
| **ML feature SQL** | Migrating Vertica feature-engineering SQL → Snowflake/dbt |
| **Copilot** | Migration Q&A (keyword / optional HF LLM) |
| **Behavior notes / Eval** | Dialect quirks lookup and offline conversion scoring |
```python
from morphsql.ai import pipeline
out = pipeline("sql-migration")(sql, source="snowflake", target="pandas")
# or target="pyspark"
# out["converted_sql"] → exec / save as features.py
```
[Space]({SPACE_URL}) · [GitHub]({GITHUB_URL})
"""
)
with gr.Tab("More"):
gr.Markdown(
"Lab extras beyond day-to-day Convert: assess objects, scan a repo, "
"migrate feature SQL, ask the copilot, or run offline eval."
)
report_state = gr.State(value=None)
with gr.Accordion("Object assess & convert", open=False):
gr.Markdown(
"Score complexity/risk and convert a single SQL object "
"(pandas, PySpark, warehouse SQL, or dbt)."
)
with gr.Row():
assess_source = gr.Dropdown(
choices=SOURCE_DROPDOWN, value="vertica", label="Source"
)
assess_target = gr.Dropdown(
choices=TARGET_DROPDOWN, value="snowflake", label="Target"
)
assess_btn = gr.Button("Assess & Convert", variant="secondary")
assess_sql = gr.Textbox(
label="SQL object",
value="SELECT customer_id, ZEROIFNULL(order_amount) AS order_amount "
"FROM staging.orders WHERE order_date >= CURRENT_DATE - 30",
lines=8,
)
assess_badge = gr.Textbox(label="Score", interactive=False, max_lines=1)
with gr.Row():
assess_analysis = gr.Markdown()
assess_risk = gr.HTML()
assess_out = gr.Textbox(label="Converted output", lines=10)
assess_notes = gr.Markdown()
assess_btn.click(
analyze_sql_object_ui,
[assess_sql, assess_source, assess_target],
[assess_analysis, assess_risk, assess_badge, assess_out, assess_notes],
)
with gr.Accordion("Repository workbench", open=False):
gr.Markdown(
"Scan the sample Vertica repo (or upload a `.zip`), then convert / "
"validate / preview dbt + lineage."
)
with gr.Row():
wb_source = gr.Dropdown(
choices=SOURCE_DROPDOWN, value="vertica", label="Source"
)
wb_target = gr.Dropdown(
choices=TARGET_DROPDOWN, value="snowflake", label="Target"
)
wb_sample = gr.Checkbox(value=True, label="Use sample repository")
wb_upload = gr.File(label="Or upload SQL repo (.zip)", file_types=[".zip"])
wb_btn = gr.Button("Run migration intelligence", variant="secondary")
wb_summary = gr.Markdown()
wb_metrics = gr.Markdown()
with gr.Row():
wb_risk = gr.HTML()
wb_dist = gr.HTML()
wb_objects = gr.Markdown()
wb_lineage = gr.HTML()
with gr.Row():
wb_rationalization = gr.Markdown()
wb_runbook = gr.Markdown()
with gr.Row():
wb_dbt = gr.Markdown()
wb_validation = gr.Markdown()
wb_export = gr.Code(language="json", lines=8, label="Export JSON")
wb_btn.click(
run_workbench_ui,
[wb_upload, wb_sample, wb_source, wb_target],
[
wb_summary,
wb_objects,
wb_rationalization,
wb_runbook,
wb_dbt,
wb_validation,
wb_metrics,
wb_risk,
wb_dist,
wb_lineage,
wb_export,
report_state,
],
)
with gr.Accordion("ML feature SQL migration", open=False):
gr.Markdown(
"Convert `examples/ml_features/churn_feature_sql.sql` "
"(Vertica feature engineering) → Snowflake SQL or a dbt feature mart."
)
with gr.Row():
feat_target = gr.Dropdown(
choices=[
("Snowflake SQL", "snowflake"),
("dbt project (Snowflake)", "dbt-snowflake"),
],
value="snowflake",
label="Output",
)
feat_btn = gr.Button("Migrate feature SQL", variant="secondary")
feat_md = gr.Markdown()
feat_out = gr.Textbox(label="Output", lines=14)
feat_btn.click(run_feature_migration, [feat_target], [feat_md, feat_out])
with gr.Accordion("Migration copilot", open=False):
gr.Markdown(
"Ask migration questions. Uses keyword/HF fallback guidance "
"(set `HF_TOKEN` for LLM replies)."
)
copilot = _chatbot(label="Copilot", height=320)
copilot_msg = gr.Textbox(
label="Message",
placeholder="e.g. How should I handle ZEROIFNULL on Snowflake?",
lines=2,
)
with gr.Row():
copilot_source = gr.Dropdown(
choices=SOURCE_DROPDOWN, value="vertica", label="Source"
)
copilot_target = gr.Dropdown(
choices=TARGET_DROPDOWN, value="snowflake", label="Target"
)
copilot_btn = gr.Button("Ask", variant="secondary")
copilot_sql = gr.Textbox(
label="Optional SQL context",
value="SELECT ZEROIFNULL(amount) FROM staging.transactions",
lines=3,
)
copilot_btn.click(
copilot_chat,
[
copilot_msg,
copilot,
report_state,
copilot_sql,
copilot_source,
copilot_target,
],
[copilot, copilot_msg],
)
copilot_msg.submit(
copilot_chat,
[
copilot_msg,
copilot,
report_state,
copilot_sql,
copilot_source,
copilot_target,
],
[copilot, copilot_msg],
)
with gr.Accordion("Dialect behavior notes", open=False):
rag_q = gr.Textbox(
label="Question",
value="Oracle empty string vs Snowflake NULL",
lines=2,
)
with gr.Row():
rag_source = gr.Dropdown(
choices=SOURCE_DROPDOWN, value="oracle", label="From"
)
rag_target = gr.Dropdown(
choices=[
("Snowflake SQL", "snowflake"),
("BigQuery SQL", "bigquery"),
],
value="snowflake",
label="To",
)
rag_run = gr.Button("Search", variant="secondary")
rag_out = gr.Markdown()
rag_run.click(
run_behavior_rag,
[rag_q, rag_source, rag_target],
[rag_out],
)
with gr.Accordion("Offline conversion eval", open=False):
with gr.Row():
eval_limit = gr.Slider(10, 200, value=40, step=10, label="Pairs")
eval_run = gr.Button("Run eval", variant="secondary")
eval_summary = gr.Markdown()
eval_detail = gr.Markdown()
with gr.Row():
lb_name = gr.Textbox(label="Handle", value="hf-user")
lb_submit = gr.Button("Submit local score")
leaderboard_md = gr.Markdown(value=get_leaderboard_md())
eval_run.click(
run_eval_suite,
[eval_limit, eval_category],
[eval_summary, eval_detail, eval_state],
)
lb_submit.click(
submit_eval_score, [lb_name, eval_state], [leaderboard_md]
)
gr.Markdown(
f"<p class='footer-viral'>{__product_name__} v{__version__} · "
f"<a href='{SPACE_URL}'>Space</a> · "
f"<a href='{GITHUB_URL}'>GitHub</a> · Apache-2.0</p>"
)
return demo
demo = _build_demo()
if __name__ == "__main__":
demo.launch(**_launch_style_kwargs())
|