1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//! Toast API Server
//!
//! This library provides CLI clients and an OpenAI-compatible API server built on Claude and DeepSeek.
/// Configuration constants and defaults
/// API client for interacting with Claude
/// API client for interacting with DeepSeek
/// Helper utilities for request/response processing and tool commands
/// Shared utilities for CLI implementations
/// Unified CLI implementation for both providers
/// Server implementation for the OpenAI-compatible API
/// SHA3-based proof-of-work implementation
/// DGM-inspired tool system
/// DGM-inspired agent implementation
/// Agent-based CLI using the DGM-inspired tool system
// Re-export common types for easy access
pub use ;
pub use ;
pub use ;