r-o-y-a commited on
Commit
4eb79a2
·
1 Parent(s): f0be216

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
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",