We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A lot of times I want to incorporate the same look and feel of ChatMessage markdown, but forget the CSS class (is it message or chat-message).
message
chat-message
To make it more explicit, I'd like to introduce ChatBubble which is simply Markdown(css_classes=["message"]).
Markdown(css_classes=["message"])
Use case for me is:
message_col = pn.Column(widget1, widget2) chat_interface = ChatInterface() chat_interface.send(message_col) # some callback happens: message_col.objects = [Markdown("Done!", css_classes=["message"])]
Would be nice to just do:
message_col = pn.Column(widget1, widget2) chat_interface = ChatInterface() chat_interface.send(message_col) # some callback happens: message_col.objects = [ChatBubble("Done!")]
The text was updated successfully, but these errors were encountered:
Not sure if it should contain header/footer objects too.
Sorry, something went wrong.
I don't quite follow, wouldn't the styling already be done by the ChatMessage wrapping the message_col and if not could it not automatically apply it?
ChatMessage
message_col
No branches or pull requests
A lot of times I want to incorporate the same look and feel of ChatMessage markdown, but forget the CSS class (is it
message
orchat-message
).To make it more explicit, I'd like to introduce ChatBubble which is simply
Markdown(css_classes=["message"])
.Use case for me is:
Would be nice to just do:
The text was updated successfully, but these errors were encountered: