In scenarios where multiple agents are chained together, it is crucial to pass the output of one agent's execution to the next. Currently, the visualize function in visualize.py does not return any result, hindering this process.
Solution:
Modify visualize function in visualize.py to return the result of asyncio.run(untraced_wrapper(*args, **kwargs)).
Ensure cli() function also returns its result in visualize.py.
Problem:
visualize
function invisualize.py
does not return any result, hindering this process.Solution:
visualize
function invisualize.py
to return the result ofasyncio.run(untraced_wrapper(*args, **kwargs))
.cli()
function also returns its result invisualize.py
.