#![cfg_attr(test, allow(clippy::panic))]
#[cfg(target_arch = "wasm32")]
pub mod tokio {
pub use tokio_with_wasm::alias::*;
}
pub mod adapter;
pub mod block_assembler;
pub mod error;
pub mod factory;
mod http;
pub mod provider;
mod streaming;
mod test_client;
pub mod types;
#[cfg(feature = "anthropic")]
pub mod anthropic;
#[cfg(feature = "openai")]
pub mod openai;
#[cfg(feature = "gemini")]
pub mod gemini;
pub use adapter::LlmClientAdapter;
pub use block_assembler::{BlockAssembler, BlockKey, StreamAssemblyError};
pub use error::LlmError;
pub use factory::{
DefaultClientFactory, DefaultFactoryConfig, FactoryError, LlmClientFactory, LlmProvider,
};
pub use provider::ProviderResolver;
pub use test_client::TestClient;
pub use types::{LlmClient, LlmDoneOutcome, LlmEvent, LlmRequest, LlmResponse, ToolCallBuffer};
#[cfg(feature = "anthropic")]
pub use anthropic::AnthropicClient;
#[cfg(feature = "openai")]
pub use openai::OpenAiClient;
#[cfg(feature = "gemini")]
pub use gemini::GeminiClient;