ai_lib/api/
mod.rs

1//! API定义模块,包含核心接口和数据结构
2//!
3//! API definition module containing core interfaces and data structures.
4//!
5//! This module defines the fundamental traits and types used by all AI provider
6//! adapters, ensuring consistent behavior across different vendor implementations.
7
8pub mod chat;
9
10pub use chat::{
11    ChatApi, ChatCompletionChunk, ChatProvider, ChoiceDelta, MessageDelta, ModelInfo,
12    ModelPermission,
13};