Introducing Gradio Clients
WatchIntroducing Gradio Clients
WatchNew to Gradio? Start here: Getting Started
See the Release History
To install Gradio from main, run the following command:
pip install https://gradio-builds.s3.amazonaws.com/bbd7625ecbdc71aed58148d2237bda1dc5d1b74c/gradio-4.42.0-py3-none-any.whl
*Note: Setting share=True
in
launch()
will not work.
gradio.MultimodalTextbox(···)
dict
into the function.def predict(
value: MultimodalValue | None
)
...
dict
with "text" and "files", both optional. The files array is a list of file paths or URLs.def predict(···) -> MultimodalValue | None
...
return value
Class | Interface String Shortcut | Initialization |
---|---|---|
| "multimodaltextbox" | Uses default values |
import gradio as gr
import time
# Chatbot demo with multimodal input (text, markdown, LaTeX, code blocks, image, audio, & video). Plus shows support for streaming text.
def print_like_dislike(x: gr.LikeData):
print(x.index, x.value, x.liked)
def add_message(history, message):
for x in message["files"]:
history.append({"role": "user", "content": {"path": x}})
if message["text"] is not None:
history.append({"role": "user", "content": message["text"]})
return history, gr.MultimodalTextbox(value=None, interactive=False)
def bot(history: list):
response = "**That's cool!**"
history.append({"role": "assistant", "content": ""})
for character in response:
history[-1]['content'] += character
time.sleep(0.05)
yield history
with gr.Blocks() as demo:
chatbot = gr.Chatbot(
elem_id="chatbot",
bubble_full_width=False,
type="messages"
)
chat_input = gr.MultimodalTextbox(interactive=True,
file_count="multiple",
placeholder="Enter message or upload file...", show_label=False)
chat_msg = chat_input.submit(add_message, [chatbot, chat_input], [chatbot, chat_input])
bot_msg = chat_msg.then(bot, chatbot, chatbot, api_name="bot_response")
bot_msg.then(lambda: gr.MultimodalTextbox(interactive=True), None, [chat_input])
chatbot.like(print_like_dislike, None, None)
if __name__ == "__main__":
demo.launch()
Event listeners allow you to respond to user interactions with the UI components you've defined in a Gradio Blocks app. When a user interacts with an element, such as changing a slider value or uploading an image, a function is called.
The MultimodalTextbox component supports the following event listeners. Each event listener takes the same parameters, which are listed in the Event Parameters table below.
Listener | Description |
---|---|
| Triggered when the value of the MultimodalTextbox changes either because of user input (e.g. a user types in a textbox) OR because of a function update (e.g. an image receives a value from the output of an event trigger). See |
| This listener is triggered when the user changes the value of the MultimodalTextbox. |
| Event listener for when the user selects or deselects the MultimodalTextbox. Uses event data gradio.SelectData to carry |
| This listener is triggered when the user presses the Enter key while the MultimodalTextbox is focused. |
| This listener is triggered when the MultimodalTextbox is focused. |
| This listener is triggered when the MultimodalTextbox is unfocused/blurred. |