| """Helallao Perplexity voting on baseline failures. |
| |
| Bypasses GraceKelly's broken browser adapter — uses helallao/perplexity-ai |
| library + extracted Pro cookies directly. Pro model whitelist: |
| sonar / gpt-5.2 / claude-4.5-sonnet / grok-4.1 (+ -thinking / -reasoning). |
| |
| Mirror of run_sonnet_voting.py but routes through HelallaoPerplexityProvider. |
| |
| Usage: |
| uv run python scripts/run_helallao_voting.py \\ |
| --baseline eval/reports/.../v11.json \\ |
| --out eval/reports/.../helallao-grok-voting.json \\ |
| --model grok-4.1 |
| uv run python scripts/run_helallao_voting.py \\ |
| --baseline eval/reports/.../v20.json \\ |
| --out eval/reports/.../helallao-qid1399.json \\ |
| --model grok-4.1-reasoning --only-qids 1399 |
| """ |
|
|
| from __future__ import annotations |
|
|
| import argparse |
| import json |
| import sys |
| import time |
| from pathlib import Path |
| from typing import Any |
|
|
| from nl_sql.agent.graph import PipelineConfig, build_pipeline, run_pipeline |
| from nl_sql.config import get_settings |
| from nl_sql.db.registry import get_default_registry |
| from nl_sql.eval.dataset import load_bird_mini_dev |
| from nl_sql.eval.metrics.execution_accuracy import safe_compare_pred |
| from nl_sql.eval.runner import _compose_question, _execute_gold_with_status |
| from nl_sql.execution.runner import execute_validated |
| from nl_sql.llm.cache import CachingEmbeddingProvider |
| from nl_sql.llm.providers.helallao_perplexity import HelallaoPerplexityProvider |
| from nl_sql.llm.providers.mistral import MistralProvider |
| from nl_sql.schema_index.indexer import SchemaIndex |
|
|
|
|
| def main() -> int: |
| p = argparse.ArgumentParser(description=__doc__) |
| p.add_argument("--baseline", type=Path, required=True) |
| p.add_argument("--bird-root", type=Path, default=Path("data/bird_mini_dev/MINIDEV")) |
| p.add_argument("--out", type=Path, required=True) |
| p.add_argument("--max-cases", type=int, default=200) |
| p.add_argument("--skip-qids", default="") |
| p.add_argument( |
| "--only-qids", |
| default="", |
| help="comma-separated baseline failure qids to retry exactly, preserving argument order", |
| ) |
| p.add_argument("--model", default="grok-4.1") |
| p.add_argument( |
| "--cookies", |
| type=Path, |
| default=Path("D:/NL_SQL/.tmp/pplx_cookies.json"), |
| help="Path to Perplexity cookies JSON (from .tmp/extract_pplx_cookies.py)", |
| ) |
| p.add_argument( |
| "--sleep-between", |
| type=float, |
| default=2.0, |
| help="Sleep seconds between cases (helallao Cloudflare gentle pacing)", |
| ) |
| args = p.parse_args() |
|
|
| baseline = json.loads(args.baseline.read_text(encoding="utf-8")) |
| fails = [r for r in baseline["records"] if not r.get("match")] |
| try: |
| only_qids = [int(x) for x in args.only_qids.split(",") if x.strip()] |
| except ValueError: |
| print("[error] invalid --only-qids: expected comma-separated integers", file=sys.stderr) |
| return 3 |
| if only_qids: |
| fails_by_qid = {int(r["question_id"]): r for r in fails} |
| missing_qids = [qid for qid in only_qids if qid not in fails_by_qid] |
| if missing_qids: |
| print(f"[error] qids not found in baseline failures: {missing_qids}", file=sys.stderr) |
| return 3 |
| fails = [fails_by_qid[qid] for qid in only_qids] |
| skip = {int(x) for x in args.skip_qids.split(",") if x.strip()} |
| fails = [r for r in fails if r["question_id"] not in skip][: args.max_cases] |
| print(f"[info] {len(fails)} failures to retry with helallao+{args.model}", file=sys.stderr) |
| if not fails: |
| return 0 |
|
|
| settings = get_settings() |
| examples = {e.question_id: e for e in load_bird_mini_dev(args.bird_root)} |
| registry = get_default_registry() |
| sql_provider = HelallaoPerplexityProvider( |
| model=args.model, cookies_path=args.cookies, timeout_seconds=180.0 |
| ) |
| emb = CachingEmbeddingProvider( |
| MistralProvider(api_key=settings.mistral_api_key), cache_dir=settings.llm_cache_dir |
| ) |
| idx = SchemaIndex(persist_dir="chroma_data", embedder=emb) |
|
|
| import os |
|
|
| cfg = PipelineConfig( |
| sql_provider=sql_provider, |
| explain_provider=sql_provider, |
| schema_index=idx, |
| registry=registry, |
| fewshot_top_k=3, |
| sort_schema_block=True, |
| cross_db_fewshot=True, |
| verify_retry_on_empty=False, |
| enable_grounded_critique=False, |
| use_m_schema=os.environ.get("NLSQL_M_SCHEMA") == "1", |
| use_dac_prompt=os.environ.get("NLSQL_DAC") == "1", |
| ) |
| pipeline = build_pipeline(cfg) |
|
|
| records: list[dict[str, Any]] = [] |
| rescued = 0 |
| regressed = 0 |
| same = 0 |
| errored = 0 |
| out_path = args.out |
| out_path.parent.mkdir(parents=True, exist_ok=True) |
|
|
| for i, br in enumerate(fails, 1): |
| qid = br["question_id"] |
| ex = examples.get(qid) |
| if ex is None: |
| continue |
| spec = registry.get(ex.registry_db_id) |
| engine = spec.make_engine() |
| try: |
| t0 = time.perf_counter() |
| try: |
| alt = run_pipeline( |
| pipeline, |
| question=_compose_question(ex), |
| db_id=ex.registry_db_id, |
| dialect="sqlite", |
| ) |
| except Exception as exc: |
| errored += 1 |
| records.append( |
| { |
| "question_id": qid, |
| "db_id": ex.db_id, |
| "difficulty": ex.difficulty, |
| "question": ex.question, |
| "gold_sql": ex.sql, |
| "baseline_pred": br["pred_sql"], |
| "alt_pred": "", |
| "alt_confidence": None, |
| "baseline_match": bool(br.get("match")), |
| "alt_match": False, |
| "vote_match": False, |
| "vote_source": f"helallao:{args.model}", |
| "alt_error": str(exc), |
| } |
| ) |
| print(f"[{i:3d}/{len(fails)}] qid={qid} EXC: {str(exc)[:180]}", file=sys.stderr) |
| out_path.write_text( |
| json.dumps( |
| { |
| "alt_model": f"helallao:{args.model}", |
| "summary": { |
| "voted_better": rescued, |
| "voted_worse": regressed, |
| "voted_same": same, |
| "errored": errored, |
| }, |
| "records": records, |
| }, |
| indent=2, |
| ), |
| encoding="utf-8", |
| ) |
| time.sleep(args.sleep_between) |
| continue |
| elapsed = (time.perf_counter() - t0) * 1000.0 |
|
|
| alt_sql = alt.sql or "" |
| alt_rows: list[Any] = [] |
| pred_failed = False |
| try: |
| outcome = execute_validated( |
| engine, |
| alt_sql, |
| dialect="sqlite", |
| statement_timeout_ms=30_000, |
| row_cap=10_000, |
| ) |
| if outcome.result: |
| alt_rows = list(outcome.result.rows) |
| else: |
| pred_failed = True |
| except Exception: |
| pred_failed = True |
| gold_failed = False |
| try: |
| gold_rows, _, gold_failed = _execute_gold_with_status( |
| engine, ex.sql, statement_timeout_ms=30_000, row_cap=10_000 |
| ) |
| except Exception: |
| gold_rows = [] |
| gold_failed = True |
| alt_cmp = safe_compare_pred( |
| gold_rows, |
| alt_rows, |
| gold_sql=ex.sql, |
| pred_failed=pred_failed, |
| gold_failed=gold_failed, |
| ) |
| alt_match = bool(alt_cmp.match) |
|
|
| if alt_match and not br.get("match"): |
| rescued += 1 |
| tag = "RESCUE" |
| elif br.get("match") and not alt_match: |
| regressed += 1 |
| tag = "regression" |
| else: |
| same += 1 |
| tag = "same" |
|
|
| records.append( |
| { |
| "question_id": qid, |
| "db_id": ex.db_id, |
| "difficulty": ex.difficulty, |
| "question": ex.question, |
| "gold_sql": ex.sql, |
| "baseline_pred": br["pred_sql"], |
| "alt_pred": alt_sql, |
| "alt_confidence": getattr(alt, "confidence", None), |
| "baseline_match": bool(br.get("match")), |
| "alt_match": alt_match, |
| "vote_match": alt_match, |
| "vote_source": f"helallao:{args.model}", |
| "elapsed_ms": elapsed, |
| } |
| ) |
| print( |
| f"[{i:3d}/{len(fails)}] qid={qid} {ex.difficulty:11s} {tag} ({elapsed / 1000:.1f}s)", |
| file=sys.stderr, |
| ) |
|
|
| out_path.write_text( |
| json.dumps( |
| { |
| "alt_model": f"helallao:{args.model}", |
| "summary": { |
| "voted_better": rescued, |
| "voted_worse": regressed, |
| "voted_same": same, |
| "errored": errored, |
| }, |
| "records": records, |
| }, |
| indent=2, |
| ), |
| encoding="utf-8", |
| ) |
| finally: |
| engine.dispose() |
| time.sleep(args.sleep_between) |
|
|
| print("\n=== helallao voting summary ===", file=sys.stderr) |
| print(f" model: {args.model}", file=sys.stderr) |
| print(f" cases: {len(records)}", file=sys.stderr) |
| print(f" rescued: {rescued}", file=sys.stderr) |
| print(f" regressed: {regressed}", file=sys.stderr) |
| print(f" same: {same}", file=sys.stderr) |
| print(f" errored: {errored}", file=sys.stderr) |
| return 0 |
|
|
|
|
| if __name__ == "__main__": |
| raise SystemExit(main()) |
|
|