nastasiasnk commited on
Commit
03cfcc4
·
verified ·
1 Parent(s): ed81d45

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -13,7 +13,12 @@ def getDataFromGrasshopper(
13
  return ""
14
 
15
 
16
- demo = gr.Interface(fn=getDataFromGrasshopper, inputs="", outputs="")
 
 
 
 
 
17
  demo.launch()
18
 
19
 
 
13
  return ""
14
 
15
 
16
+ demo = gr.Interface(
17
+ fn=getDataFromGrasshopper,
18
+ inputs=gr.Textbox(), # Use a valid Gradio input component
19
+ outputs=gr.Textbox() # Use a valid Gradio output component
20
+ )
21
+
22
  demo.launch()
23
 
24