24Arys11's picture
implemented graph.py, agents, guard; reduced image and video node to viewer node; renamed system prompts
98ada6c
raw
history blame
1.27 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: IMPLEMENTED
- name: final_answer
connections: [END]
description: Formats and delivers the final response to the user
status: IMPLEMENTED
- name: auditor
connections: [manager]
description: Reviews manager's outputs for accuracy, safety, and quality
status: IMPLEMENTED
- name: solver
connections: [manager, researcher, reasoner, viewer]
description: Central problem-solving node that coordinates with specialized experts based on task requirements
status: IMPLEMENTED
- name: researcher
connections: [solver]
description: Retrieves and synthesizes information from various sources to answer knowledge-based questions
status: IMPLEMENTED
- name: reasoner
connections: [solver]
description: Performs logical reasoning, inference, and step-by-step problem-solving
status: IMPLEMENTED
- name: viewer
connections: [solver]
description: Processes, analyzes, and generates vision related information
status: NOT_IMPLEMENTED