Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Recursive Nodes in OpenAI Agents Draw Graph Visualization Extension #387

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

NicoHwpo
Copy link

This PR enhances the OpenAI Agents Graph extension by adding support for recursive nodes and cycles. Currently, the extension does not properly graph an agent when it is recursive or has a path that loops back to itself.

Changes Introduced:

  • Implemented an integrated method to track visited nodes (handoffs) to prevent infinite loops.
  • Updated the graphing logic to correctly represent recursive nodes with return arrows.

This change improves the visualization of agents with cyclic or recursive behaviors, making the graph more accurate and comprehensive.

i realized the extension is not able to graph when an agent is recursive or has some path back to it.
- intergrated way of keeping track of visited nodes(handoffs)
- graph the new nodes with the return arrows
@MartinEBravo
Copy link
Contributor

Awesome.

Copy link
Collaborator

@rm-openai rm-openai left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Generally looks good, can you please add some tests for this?

if visited is None:
visited = set()

if agent.name in visited:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

multiple agents can share the same name, perhaps we can use the object instead?

if not parent:
parts.append(
f'"{agent.name}" [label="{agent.name}", shape=box, style=filled, '
"fillcolor=lightyellow, width=1.5, height=0.8];"
'"__start__" [label="__start__", shape=ellipse, style=filled, '
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I know this isn't directly related to the PR, but it would be cool if we could first build a graph representation, and then second turn that into a visualization. That way, you could have different graph formats (graphviz, mermaid etc), and share code between them,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants