Update app.py
Browse files
app.py
CHANGED
@@ -41,12 +41,12 @@ def predict(image, text):
|
|
41 |
interface = gr.Interface(
|
42 |
fn=predict,
|
43 |
inputs=[
|
44 |
-
gr.Image(type="pil", label="
|
45 |
-
gr.Textbox(label="
|
46 |
],
|
47 |
-
outputs=gr.Textbox(label="
|
48 |
-
title="Llama 3.2
|
49 |
-
description="
|
50 |
)
|
51 |
|
52 |
interface.launch()
|
|
|
41 |
interface = gr.Interface(
|
42 |
fn=predict,
|
43 |
inputs=[
|
44 |
+
gr.Image(type="pil", label="Image Input"),
|
45 |
+
gr.Textbox(label="Text Input")
|
46 |
],
|
47 |
+
outputs=gr.Textbox(label="Output"),
|
48 |
+
title="Llama 3.2 11B Vision Instruct Demo",
|
49 |
+
description="Meta's new model that generates a response based on an image and text input."
|
50 |
)
|
51 |
|
52 |
interface.launch()
|