cantuncok commited on
Commit
e26d2d9
1 Parent(s): 6f75ab3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
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="Görüntü Girdisi"),
45
- gr.Textbox(label="Metin Girdisi")
46
  ],
47
- outputs=gr.Textbox(label="Çıktı"),
48
- title="Llama 3.2 90B Vision Instruct Demo",
49
- description="Bir görüntü ve metin girdisi alarak yanıt üreten model."
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()