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
Option "editable" in gr.Chatbot could only work for the first message in a group of consecutive messages.
import gradio as gr examples = [ {"role": "user", "content": "User message 1."}, {"role": "user", "content": "User message 2."}, { "role": "assistant", "content": "This is a plain text.", }, ] with gr.Blocks() as demo: chatbot = gr.Chatbot( type="messages", editable="all", group_consecutive_messages=False, ) demo.load(lambda: examples, None, chatbot) demo.launch(server_name="0.0.0.0", server_port=19011)
No response
Gradio==5.10.0 Python==3.10.14
Blocking usage of gradio
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Option "editable" in gr.Chatbot could only work for the first message in a group of consecutive messages.
Have you searched existing issues? 🔎
Reproduction
Screenshot
Logs
No response
System Info
Severity
Blocking usage of gradio
The text was updated successfully, but these errors were encountered: