toast-api 0.1.4

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

/// Configuration constants and defaults
pub mod config;

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

/// API client for interacting with DeepSeek
pub mod deepseek;

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

/// CLI implementation for Claude
pub mod cli;

/// CLI implementation for DeepSeek
pub mod deepseek_cli;

/// Unified CLI implementation for both providers
pub mod unified_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 deepseek::{DeepSeek, Session as DeepSeekSession};
pub use config::{HAIKU_MODEL, OPUS_MODEL, SONNET_MODEL};