assistant2: Use ChatMessage component to render chat messages (#11193)

This PR updates the new assistant panel to use the `ChatMessage`
component to render its chat messages.

This also lays the foundation for collapsing the messages, though that
has yet to be wired up.

Adapted from the work on the `assistant-chat-ui` branch.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-04-29 18:47:16 -04:00 committed by GitHub
parent ae650342ce
commit 089ea7852d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 150 additions and 75 deletions

View file

@ -1,5 +1,5 @@
mod chat_message_header;
mod chat_message;
mod composer;
pub use chat_message_header::*;
pub use chat_message::*;
pub use composer::*;