tlodato commited on
Commit
11990fc
·
1 Parent(s): 0e3225c
Files changed (1) hide show
  1. app.py +24 -6
app.py CHANGED
@@ -4,9 +4,27 @@ import gradio as gr
4
  from gradio_client import Client
5
 
6
  client = Client("https://adept-fuyu-8b-demo.hf.space/--replicas/9kcqv/")
7
- result = client.predict(
8
- "https://raw.githubusercontent.com/gradio-app/gradio/main/test/test_files/bus.png", # str (filepath on your computer (or URL) of image) in 'Upload your Image' Image component
9
- "Howdy!", # str in 'Ask a Question' Textbox component
10
- fn_index=3
11
- )
12
- print(result)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  from gradio_client import Client
5
 
6
  client = Client("https://adept-fuyu-8b-demo.hf.space/--replicas/9kcqv/")
7
+
8
+ filepath = "https://raw.githubusercontent.com/gradio-app/gradio/main/test/test_files/bus.png"
9
+ question = "what color is the bus?"
10
+ def vqa(image, prompt):
11
+ result = client.predict(image,text,fn_index=3)
12
+ return result
13
+
14
+ css = """
15
+ #mkd {
16
+ height: 500px;
17
+ overflow: auto;
18
+ border: 1px solid #ccc;
19
+ }
20
+ """
21
+
22
+ with gr.Blocks(css=css) as demo:
23
+ with gr.Row():
24
+ with gr.Column():
25
+ image_input = gr.Image(label="Upload your Image", type="pil")
26
+ text_input = gr.Textbox(label="Ask a Question")
27
+ vqa_output = gr.Textbox(label="Output")
28
+ vqa_btn = gr.Button("Answer Visual Question")
29
+
30
+ demo.launch()