#![allow(dead_code)]
pub mod config;
pub mod engine;
#[cfg(feature = "neo4j")]
pub mod neo4j_kb;
pub mod prompt;
pub mod prompt_templates;
pub mod provider;
pub mod rate_limit;
pub mod response;
pub mod streaming;
#[allow(unused_imports)]
pub use config::{AiConfig, AiProvider as AiProviderType, AudienceLevel, ExplanationContext};
#[allow(unused_imports)]
pub use engine::{EngineStats, ExplainEngine};
#[cfg(feature = "neo4j")]
#[allow(unused_imports)]
pub use neo4j_kb::{
CveRecord, CweKnowledge, EmbeddingProvider, Neo4jConfig, SecurityKnowledgeGraph,
SimilarFinding, VoyageEmbedder,
};
#[allow(unused_imports)]
pub use prompt::PromptBuilder;
#[allow(unused_imports)]
pub use prompt_templates::{AdvancedPromptBuilder, FewShotExample, VulnCategory};
#[allow(unused_imports)]
pub use provider::{AiProvider, MockProvider};
#[allow(unused_imports)]
pub use rate_limit::RateLimiter;
#[allow(unused_imports)]
pub use response::{
CodeExample, EducationalContext, ExplanationMetadata, ExplanationResponse, Likelihood,
RemediationGuide, ResourceLink, VulnerabilityExplanation, WeaknessInfo,
};
#[allow(unused_imports)]
pub use streaming::{
stream_channel, ChunkReceiver, ChunkSender, CollectCallback, PrintCallback, StreamAccumulator,
StreamCallback, StreamChunk,
};