Files
baseldosdados/ask/Cargo.toml
rafapolo b5d84e3556 feat: add LLM SQL query assistant and dataset sampler
- ask.py: Python script to query Base dos Dados via natural language using Gemini,
  generates and executes DuckDB SQL from Portuguese questions
- ask/ (Rust): CLI companion for the SQL query assistant with system prompt
- sample_datasets.py: samples parquet files from S3 into a local DuckDB for exploration
- sample_datasets/ (Rust): CLI for dataset sampling
- context/: LLM context bundle (schemas, join keys, file tree) for query generation
2026-03-28 11:23:51 +01:00

20 lines
454 B
TOML

[package]
name = "ask"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "ask"
path = "src/main.rs"
[dependencies]
reqwest = { version = "0.12", features = ["blocking", "rustls-tls", "json"], default-features = false }
serde_json = "1"
duckdb = { version = "1", features = ["bundled"] }
dotenvy = "0.15"
anyhow = "1"
syntect = "5"
ratatui = "0.29"
crossterm = { version = "0.28", features = ["event-stream"] }
tui-textarea = "0.7"