Update app.py
Browse files
app.py
CHANGED
@@ -122,8 +122,8 @@ with gr.Blocks() as demo:
|
|
122 |
with gr.Row():
|
123 |
with gr.Column():
|
124 |
|
125 |
-
image = gr.Image(shape=(224, 224), type="pil")
|
126 |
-
image_url = gr.Textbox(lines=1, label="
|
127 |
question = gr.Textbox(lines=5, label="Question")
|
128 |
|
129 |
ask = gr.Button(label="Get the answer")
|
|
|
122 |
with gr.Row():
|
123 |
with gr.Column():
|
124 |
|
125 |
+
image = gr.Image(shape=(224, 224), type="pil", label="Pick an image")
|
126 |
+
image_url = gr.Textbox(lines=1, label="Or use this option!", placeholder="Enter the image URL here")
|
127 |
question = gr.Textbox(lines=5, label="Question")
|
128 |
|
129 |
ask = gr.Button(label="Get the answer")
|