mirror of
https://github.com/0xMassi/webclaw.git
synced 2026-04-25 00:06:21 +02:00
Initial release: webclaw v0.1.0 — web content extraction for LLMs
CLI + MCP server for extracting clean, structured content from any URL. 6 Rust crates, 10 MCP tools, TLS fingerprinting, 5 output formats. MIT Licensed | https://webclaw.io
This commit is contained in:
commit
c99ec684fa
79 changed files with 24074 additions and 0 deletions
19
crates/webclaw-llm/src/lib.rs
Normal file
19
crates/webclaw-llm/src/lib.rs
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
/// webclaw-llm: LLM integration with local-first hybrid architecture.
|
||||
///
|
||||
/// Provider chain tries Ollama (local) first, falls back to OpenAI, then Anthropic.
|
||||
/// 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};
|
||||
Loading…
Add table
Add a link
Reference in a new issue