muellerzr HF staff commited on
Commit
9f6dc18
1 Parent(s): 786238d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -18,4 +18,11 @@ def run_aim():
18
 
19
  if __name__ == "__main__":
20
  run_aim()
 
 
 
 
 
 
 
21
 
 
18
 
19
  if __name__ == "__main__":
20
  run_aim()
21
+ demo = gr.Interface(
22
+ fn=run,
23
+ inputs=[],
24
+ outputs=gr.Text("Hello there!")
25
+ )
26
+ demo.launch()
27
+
28