gigi-cli 1.0.0

Gigi — A Claude Code-like AI coding assistant CLI in Rust
1
2
3
4
5
6
7
8
9
10
11
pub mod anthropic;
pub mod cloud;
pub mod engine;
pub mod local;
pub mod provider;
pub mod types;

// Re-export the most commonly used items for convenience
pub use engine::QueryEngine;
pub use provider::{ModelProvider, ProviderType, create_provider};
pub use types::*;