1 2 3 4 5 6
// src/language_models/mod.rs //! 语言模型实现 pub mod openai; pub use openai::{OpenAIChat, OpenAIConfig};