rustchain 0.1.0

Workflow transpilation and execution framework - import LangChain, Airflow, GitHub Actions, and more
Documentation
1
2
3
4
5
6
7
use rustchain::cli;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    // Delegate to CLI (it will handle tracing initialization)
    cli::run().await.map_err(|e| anyhow::anyhow!("{}", e))
}