cliai 0.2.0

A small Rust library for invoking AI tools through CLI backends like Ollama and GitHub Copilot CLI.
Documentation
1
2
3
4
5
6
7
//! Backend implementations for invoking AI tools.

pub mod copilot;
pub mod ollama;

pub use copilot::Copilot;
pub use ollama::Ollama;