2026-03-23 18:31:11 +01:00
|
|
|
/// webclaw-llm: LLM integration with local-first hybrid architecture.
|
|
|
|
|
///
|
2026-06-16 15:27:56 +02:00
|
|
|
/// Provider chain tries Ollama (local) first, falls back to OpenAI, then Gemini, then Anthropic.
|
2026-03-23 18:31:11 +01:00
|
|
|
/// Provides schema-based extraction, prompt extraction, and summarization
|
|
|
|
|
/// on top of webclaw-core's content pipeline.
|
|
|
|
|
pub mod chain;
|
|
|
|
|
pub mod clean;
|
|
|
|
|
pub mod error;
|
|
|
|
|
pub mod extract;
|
|
|
|
|
pub mod provider;
|
|
|
|
|
pub mod providers;
|
|
|
|
|
pub mod summarize;
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
pub(crate) mod testing;
|
|
|
|
|
|
|
|
|
|
pub use chain::ProviderChain;
|
|
|
|
|
pub use clean::strip_thinking_tags;
|
|
|
|
|
pub use error::LlmError;
|
|
|
|
|
pub use provider::{CompletionRequest, LlmProvider, Message};
|