Replies: 1 comment 1 reply
|
that's how (message format left against complexities and choices of transmission protocol) it is in raw samples. and then you are left with need for lower level implementations, where you need to negotiate protocol between server and client. should your msg be delivered through sync / sse-streaming / push? if you look at task manager there it was left with a lot to handle. here in sdk you are handed queue which abstracts earlier complexity. you put you message(s) in it and it will be delivered in spec compliant manner. sdk and queue bring DX to a point that is commonly expected from a platform/sdk: you dont have to worry about protocol negotiation, you hand in your message to an communication service abstraction. |
1 reply
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,
I'm wondering what's the idea behind the communication with agent executor via the
EventQueue? It seems like the communication would have been much simpler if it was via some kind of predefined response format. Can somebody explain this to me please?All reactions