join-ai 0.1.0

A tool to traverse files in a folder and concatenate them into a single text file for GenAI models.
Documentation
1
2
3
4
5
6
7
use clap::Parser;
use join_ai::{cli::Args, run};

fn main() -> anyhow::Result<()> {
    let args = Args::parse();
    run(args)
}