Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -30,7 +30,6 @@ def get_model_summary(model_name):
|
|
| 30 |
interface = gr.Interface(
|
| 31 |
fn=get_model_summary,
|
| 32 |
inputs="text",
|
| 33 |
-
outputs="text",
|
| 34 |
examples=[
|
| 35 |
["google/gemma-7b"],
|
| 36 |
["microsoft/Phi-3-mini-4k-instruct"],
|
|
@@ -42,7 +41,8 @@ interface = gr.Interface(
|
|
| 42 |
["google/paligemma-3b-mix-224"],
|
| 43 |
["HuggingFaceM4/idefics2-8b-chatty"],
|
| 44 |
["mistralai/Codestral-22B-v0.1"]
|
| 45 |
-
]
|
|
|
|
| 46 |
)
|
| 47 |
|
| 48 |
interface.launch()
|
|
|
|
| 30 |
interface = gr.Interface(
|
| 31 |
fn=get_model_summary,
|
| 32 |
inputs="text",
|
|
|
|
| 33 |
examples=[
|
| 34 |
["google/gemma-7b"],
|
| 35 |
["microsoft/Phi-3-mini-4k-instruct"],
|
|
|
|
| 41 |
["google/paligemma-3b-mix-224"],
|
| 42 |
["HuggingFaceM4/idefics2-8b-chatty"],
|
| 43 |
["mistralai/Codestral-22B-v0.1"]
|
| 44 |
+
],
|
| 45 |
+
outputs="text"
|
| 46 |
)
|
| 47 |
|
| 48 |
interface.launch()
|