defect-llm 0.1.0-alpha.6

LLM provider implementations (Anthropic, Bedrock, OpenAI, DeepSeek) for the defect agent.
Documentation
1
2
3
4
5
6
7
8
9
10
//! LLM provider abstraction layer.
//!
//! Implements [`defect_core::llm::LlmProvider`] for Anthropic and OpenAI.
//! Architecture: protocol layer + vendor layer.

#![cfg_attr(not(test), warn(clippy::indexing_slicing, clippy::unwrap_used))]

pub mod protocol;
pub mod provider;
pub mod wire;