1 2 3 4 5 6 7 8 9
//! 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;