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