| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
English | 中文说明
Deep Research Agent is a self-evolution protocol and runtime for LLM-based agent systems.
Recent agent protocols often under-specify cross-entity lifecycle/context management, version tracking, and safe evolution update interfaces, which encourages monolithic compositions and brittle glue code. Deep Research Agent addresses this by decoupling what evolves from how evolution occurs:
Built on Deep Research Agent, the system includes a Deep Research Agent style tool-calling agent that can dynamically instantiate/retrieve/refine resources and improve during execution.
At a high level, Deep Research Agent supports an iterative loop:
DeepResearchAgent/
configs/ # config composition (agents/tools/envs/memory/models)
src/
agent/ # agents
environment/ # environments
tool/ # tools
memory/ # memory systems
optimizer/ # self-evolution optimizers
model/ # model manager + provider backends
prompt/ # prompt templates / prompt manager
tracer/ # tracing
version/ # versioning
libs/ # vendored libraries
workdir/ # runtime artifacts (logs, traces, results, etc.)
Prerequisites:
Example:
python examples/run_tool_calling_agent.py --config configs/tool_calling_agent.pyOverride model/workdir:
python examples/run_tool_calling_agent.py \
--config configs/tool_calling_agent.py \
--cfg-options model_name=openrouter/gpt-4o workdir=workdir/demo tag=demo| Back | FazBrowse Home | New Git URL |