frankrobotics commited on
Commit
8b5d7d2
Β·
verified Β·
1 Parent(s): 7514661

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -3,5 +3,5 @@ import gradio as gr
3
  def model(params):
4
  return "hello world"
5
 
6
- const app = gr.Interface(fn=model, "text","text")
7
  demo.launch()
 
3
  def model(params):
4
  return "hello world"
5
 
6
+ app = gr.Interface(fn=model, "text","text")
7
  demo.launch()