Skip to main content

apple_code_assistant/
lib.rs

1//! Apple Code Assistant - Library root
2//! CLI for code generation using Apple Foundation Models
3
4mod api;
5mod cli;
6pub mod config;
7mod conversation;
8mod error;
9mod types;
10mod ui;
11pub mod utils;
12
13pub use error::{ApiError, ConfigError, IoError};
14
15pub use cli::{Args, Handler};