Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 916 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 916 Bytes

Langgraph4j - Agent Executor

The "Agent Executor" flow involves a sequence of steps where the agent receives a query, decides on necessary actions, invokes tools, processes responses, iteratively performs tasks if needed, and finally returns a synthesized response to the user.

This flow ensures that the agent can handle complex tasks efficiently by leveraging the capabilities of various integrated tools and the decision-making power of the language model.

Mermaid Diagram

---
title: Agent Executor
---
flowchart TD
	start((start))
	stop((stop))
	agent("agent")
	action("action")
	condition1{"check state"}
	start --> agent
	agent --> condition1
	condition1 -->|continue| action
	condition1 -->|end| stop
	action --> agent
Loading

PlantUML Diagram

diagram


Go to code