kreuzcrawl 0.1.0

High-performance web crawling engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Deep research agent module.
//!
//! Provides an autonomous research agent that plans, crawls, and synthesizes
//! findings using an LLM-driven loop. Feature-gated behind `ai`.

mod agent;
mod planner;
mod synthesizer;
mod types;

pub use agent::ResearchAgent;
pub use types::{Finding, ResearchConfig, ResearchResult, ResearchStep, SourceInfo, StepAction};