Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -3,6 +3,9 @@ import gradio
|
|
3 |
def my_inference_function(text):
|
4 |
return text
|
5 |
|
|
|
|
|
|
|
6 |
gr = gradio.Interface(
|
7 |
fn = my_inference_function,
|
8 |
inputs = "text",
|
|
|
3 |
def my_inference_function(text):
|
4 |
return text
|
5 |
|
6 |
+
os.system("pip uninstall -y gradio")
|
7 |
+
os.system("pip install gradio==2.6.4")
|
8 |
+
|
9 |
gr = gradio.Interface(
|
10 |
fn = my_inference_function,
|
11 |
inputs = "text",
|