apple-code-assistant 0.1.1

Apple Code Assistant - Professional CLI tool powered by Apple Intelligence for on-device code generation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Apple Code Assistant - Library root
//! CLI for code generation using Apple Foundation Models

mod api;
mod cli;
pub mod config;
mod conversation;
mod error;
mod types;
mod ui;
pub mod utils;

pub use error::{ApiError, ConfigError, IoError};

pub use cli::{Args, Handler};