Overview of Deep Research Agent Architecture
mainDeep Research Agent is a self-evolving protocol and engineering runtime for LLM agent systems. It decouples the definition of resources from the evolution process using two primary layers:
- RSPL (Resource Substrate Protocol Layer): Models
prompt,agent,tool,environment, andmemoryas protocol-registered resources with explicit state, lifecycle, and versioned interfaces. - SEPL (Self Evolution Protocol Layer): Defines closed-loop operator interfaces for proposing, assessing, and committing improvements, featuring auditable lineage and rollback capabilities.
The system follows a self-evolution loop consisting of:
- Act: Agent generates actions/outputs using LLM and tools.
- Observe: Records results, trajectories, intermediate info, and environmental feedback.
- Optimize: Uses optimizers (e.g., Reflection, GRPO, Reinforce++) to convert feedback into reusable improvements.
- Remember: Writes session events and insights into the memory system for future reuse.