File size: 390 Bytes
6bff5d9
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
# query

Catalog-driven query subsystem. User question → IR → SQL/pandas → result.

Subpackages:
- `ir/` — JSON IR Pydantic models + validator
- `planner/` — LLM step: question + catalog → IR
- `compiler/` — deterministic IR → SQL or pandas op chain (no LLM)
- `executor/` — runs the compiled query against DB or Parquet

See `ARCHITECTURE.md` (root) for the full design.