1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Codegen 出来的 wire 类型与 operation。 //! //! 每个子模块由 `defect-llm-codegen` 从 `crates/llm/oas/<vendor>.yaml` //! 生成,**不要手改**。重生方式: //! //! ```bash //! cargo run -p defect-llm-codegen -- anthropic //! cargo run -p defect-llm-codegen -- openai //! ``` #[cfg(any(feature = "provider-anthropic", feature = "provider-bedrock"))] pub mod anthropic; #[cfg(any(feature = "provider-openai", feature = "provider-deepseek"))] pub mod openai;