Skip to content

Latest commit

 

History

History
57 lines (41 loc) · 1.04 KB

File metadata and controls

57 lines (41 loc) · 1.04 KB

ReWOO(Reasoning WithOut Observation)

LangGraph implementation of the ReWOO(Reasoning without Observation) framework.

Research Article Link

Workflow

ReWOO introduces a plan-and-execute paradigm where the workflow

  • Generates a structured execution plan
  • Executes steps using tools with dependency awareness
  • Produces a final, user-facing response.
User Query
    ↓
Planner Node (LLM)
    ↓
Structured Plan (Steps + Dependencies)
    ↓
Executor Node (Async Execution)
    ↓
Tool Outputs (Evidence)
    ↓
Summarizer Node (LLM)
    ↓
Final Response

Execution Workflow

image

Usage

  • Setup environment
uv venv .venv
.venv/Scripts/activate
  • Install Dependencies
uv pip install -r requirements.txt
  • Script Execution
python app.py

License

MIT License