hmb HF staff commited on
Commit
607c36f
·
verified ·
1 Parent(s): 2a1309d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +23 -22
app.py CHANGED
@@ -4,28 +4,29 @@ import gradio as gr
4
  def run(message, history):
5
  return "aaa"
6
 
7
- with gr.Blocks() as demo:
8
- gr.ChatInterface(
9
- fn=run,
10
- fill_height=True,
11
- examples=[
12
- [
13
- {
14
- "text": "Describe the images.",
15
- "files": [
16
- "https://i.natgeofe.com/n/4f5aaece-3300-41a4-b2a8-ed2708a0a27c/domestic-dog_thumb_square.jpg",
17
- "https://i.natgeofe.com/n/4f5aaece-3300-41a4-b2a8-ed2708a0a27c/domestic-dog_thumb_square.jpg",
18
- "https://i.natgeofe.com/n/4f5aaece-3300-41a4-b2a8-ed2708a0a27c/domestic-dog_thumb_square.jpg",
19
- "https://i.natgeofe.com/n/4f5aaece-3300-41a4-b2a8-ed2708a0a27c/domestic-dog_thumb_square.jpg",
20
- "https://i.natgeofe.com/n/4f5aaece-3300-41a4-b2a8-ed2708a0a27c/domestic-dog_thumb_square.jpg",
21
- "https://i.natgeofe.com/n/4f5aaece-3300-41a4-b2a8-ed2708a0a27c/domestic-dog_thumb_square.jpg",
22
- "https://i.natgeofe.com/n/4f5aaece-3300-41a4-b2a8-ed2708a0a27c/domestic-dog_thumb_square.jpg",
 
 
 
23
  ],
24
- },
25
  ],
26
- ],
27
- multimodal=True,
28
- type="messages",
29
- cache_examples=False,
30
- )
31
  demo.launch()
 
4
  def run(message, history):
5
  return "aaa"
6
 
7
+ with gr.Blocks() as demo:
8
+ with gr.Row():
9
+ gr.ChatInterface(
10
+ fn=run,
11
+ fill_height=True,
12
+ examples=[
13
+ [
14
+ {
15
+ "text": "Describe the images.",
16
+ "files": [
17
+ "https://i.natgeofe.com/n/4f5aaece-3300-41a4-b2a8-ed2708a0a27c/domestic-dog_thumb_square.jpg",
18
+ "https://i.natgeofe.com/n/4f5aaece-3300-41a4-b2a8-ed2708a0a27c/domestic-dog_thumb_square.jpg",
19
+ "https://i.natgeofe.com/n/4f5aaece-3300-41a4-b2a8-ed2708a0a27c/domestic-dog_thumb_square.jpg",
20
+ "https://i.natgeofe.com/n/4f5aaece-3300-41a4-b2a8-ed2708a0a27c/domestic-dog_thumb_square.jpg",
21
+ "https://i.natgeofe.com/n/4f5aaece-3300-41a4-b2a8-ed2708a0a27c/domestic-dog_thumb_square.jpg",
22
+ "https://i.natgeofe.com/n/4f5aaece-3300-41a4-b2a8-ed2708a0a27c/domestic-dog_thumb_square.jpg",
23
+ "https://i.natgeofe.com/n/4f5aaece-3300-41a4-b2a8-ed2708a0a27c/domestic-dog_thumb_square.jpg",
24
+ ],
25
+ },
26
  ],
 
27
  ],
28
+ multimodal=True,
29
+ type="messages",
30
+ cache_examples=False,
31
+ )
 
32
  demo.launch()