Spaces:
Runtime error
Runtime error
Update app.py to have gradio.
Browse files
app.py
CHANGED
@@ -171,7 +171,9 @@ def input_multimodel(image=None, audio=None, text=None, query=None):
|
|
171 |
return process[1]
|
172 |
else:
|
173 |
return process[0]
|
174 |
-
|
|
|
|
|
175 |
title = "Multi-Model Phi-2 "
|
176 |
description = "A simple Gradio interface to use a Multi-model (image, text, audio) version of Microsoft Phi-2"
|
177 |
|
|
|
171 |
return process[1]
|
172 |
else:
|
173 |
return process[0]
|
174 |
+
|
175 |
+
import gradio as gr
|
176 |
+
|
177 |
title = "Multi-Model Phi-2 "
|
178 |
description = "A simple Gradio interface to use a Multi-model (image, text, audio) version of Microsoft Phi-2"
|
179 |
|