24Arys11's picture
embracing langgraph; addapted LLMFactory, Args.LLMInterface, IAgent, Toolbox and agents.py; simplified graph: removed math and encryption agents while promoting the reasoner
4fb4269
raw
history blame
1.48 kB
nodes:
- name: START
connections:
- manager
description: This is the mandatory initial node `START` !
status: TERMINAL
- name: manager
connections: [solver, auditor, final_answer]
description: Orchestrates the workflow by delegating tasks to specialized nodes and integrating their outputs
status: NOT_IMPLEMENTED
- name: final_answer
connections: [END]
description: Formats and delivers the final response to the user
status: NOT_IMPLEMENTED
- name: auditor
connections: [manager]
description: Reviews manager's outputs for accuracy, safety, and quality
status: NOT_IMPLEMENTED
- name: solver
connections: [manager, researcher, reasoner, image_handler, video_handler]
description: Central problem-solving node that coordinates with specialized experts based on task requirements
status: NOT_IMPLEMENTED
- name: researcher
connections: [solver]
description: Retrieves and synthesizes information from various sources to answer knowledge-based questions
status: NOT_IMPLEMENTED
- name: reasoner
connections: [solver]
description: Performs logical reasoning, inference, and step-by-step problem-solving
status: NOT_IMPLEMENTED
- name: image_handler
connections: [solver]
description: Processes, analyzes, and generates information related to images
status: NOT_IMPLEMENTED
- name: video_handler
connections: [solver]
description: Processes, analyzes, and generates information related to videos
status: NOT_IMPLEMENTED