Spaces:
Sleeping
Sleeping
import gradio as gr | |
def run(message, history): | |
return "aaa" | |
with gr.Blocks() as demo: | |
with gr.Row(height=600): | |
gr.ChatInterface( | |
fn=run, | |
fill_height=True, | |
examples=[ | |
[ | |
{ | |
"text": "Describe the images.", | |
"files": [ | |
"https://i.natgeofe.com/n/4f5aaece-3300-41a4-b2a8-ed2708a0a27c/domestic-dog_thumb_square.jpg", | |
"https://i.natgeofe.com/n/4f5aaece-3300-41a4-b2a8-ed2708a0a27c/domestic-dog_thumb_square.jpg", | |
"https://i.natgeofe.com/n/4f5aaece-3300-41a4-b2a8-ed2708a0a27c/domestic-dog_thumb_square.jpg", | |
"https://i.natgeofe.com/n/4f5aaece-3300-41a4-b2a8-ed2708a0a27c/domestic-dog_thumb_square.jpg", | |
"https://i.natgeofe.com/n/4f5aaece-3300-41a4-b2a8-ed2708a0a27c/domestic-dog_thumb_square.jpg", | |
"https://i.natgeofe.com/n/4f5aaece-3300-41a4-b2a8-ed2708a0a27c/domestic-dog_thumb_square.jpg", | |
"https://i.natgeofe.com/n/4f5aaece-3300-41a4-b2a8-ed2708a0a27c/domestic-dog_thumb_square.jpg", | |
], | |
}, | |
], | |
], | |
multimodal=True, | |
type="messages", | |
cache_examples=False, | |
) | |
demo.launch() | |