Replies: 1 comment
-
Hey @StipeCule! Thank you for your post! We have actually already thought about it and are actively exploring ways to make it possible and easy to use. Stay tuned! You can read more about some of our considerations here. Also, we always welcome community contribution if you have ideas! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
after experimenting with agents orchestration a bit, I thought it might be useful to pass entire orchestration object into another orchestration, instead of just agents.
For example, If we have a sequential orchestration for extracting and summarizing text, we might add that entire orchestration into another concurrent orchestration with some other orchestration(maybe also concurrent)😁
So , here instead of agents we pass along the orchestrations(and agents also)
ConcurrentOrchestration orchestration = new(technologistAgent, economistAgent, SomeSequentialOrchestration)
{
ResponseCallback = responseCallback,
Description = "Coming up with ideas from different perspectives given a subject",
Name = "Generate business Ideas",
};
Beta Was this translation helpful? Give feedback.
All reactions