opendbpylot 0.3.0

Natural-language-to-SQL via Retrieval-Augmented Generation, in Rust
1
2
3
4
5
6
7
8
9
10
11
//! The `dbpylot` command-line entry point.
//!
//! All the logic lives in `opendbpylot::cli` (shared with the Python/Node
//! bindings, which run the same CLI in-process). This binary just runs it.

use anyhow::Result;

#[tokio::main]
async fn main() -> Result<()> {
    opendbpylot::cli::run().await
}