Replies: 1 comment
-
|
Hi, I think by 'data' you are referring to the A2UI json messages. Yes agents can take time to dynamically generate the json. And due to their non-deterministic nature, agents may change different UI at different times for the same scenario. You can add determinism by building your custom catalogs with custom components for your well know requirements. For example if you run a flight booking website, you know customer requests will be for searching flights or purchasing add-ons. You can create custom catalogs for this and the agent can use this instead of creating the UI from scratch every time. This will reduce effort for the agent and improve speed. Another option is to create the json ahead of time and store it in a vector database. Then use RAG in the agent to use the json based on the context of the conversation. This will reduce thinking time. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
The time for dynamically generated data is a bit long, how can this be optimized? And how can the stability of dynamically generated data be ensured? There may be differences in the interface generated each time.
Beta Was this translation helpful? Give feedback.
All reactions