toast-api 0.1.1

An unofficial CLI client and API server for Claude
Documentation
//! Claude API Server
//!
//! This library provides a CLI client and an OpenAI-compatible API server built on Claude.

/// Configuration constants and defaults
pub mod config;

/// API client for interacting with Claude
pub mod api;

/// Helper utilities for request/response processing and tool commands
pub mod utils;

/// CLI implementation (default interface)
pub mod cli;

/// Server implementation for the OpenAI-compatible API
pub mod server;

// Re-export common types for easy access
pub use api::{Claude, Session};
pub use config::{HAIKU_MODEL, OPUS_MODEL, SONNET_MODEL};