You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The chat-view-tree-widget checks whether any of the response part renderers matches to the parts to render. If there is none, it will log and render an error.
The horizontal-layout-part-renderer also does dispatching, however it does not have such a check. Instead it will take the first renderer, which is an arbitrary choice and may lead to runtime errors.
Steps to Reproduce:
In an agent, return a HorizontalLayoutChatResponseContentImpl with a response part which can't be handled by any of the renderers.
Expected behavior
Both cases should behave the same, at minimum logging a debug message and making sure that there is no runtime error, for example by falling back to a default renderer or rendering some fallback content.
The text was updated successfully, but these errors were encountered:
Bug Description:
Steps to Reproduce:
HorizontalLayoutChatResponseContentImpl
with a response part which can't be handled by any of the renderers.Expected behavior
Both cases should behave the same, at minimum logging a debug message and making sure that there is no runtime error, for example by falling back to a default renderer or rendering some fallback content.
The text was updated successfully, but these errors were encountered: