Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -13,7 +13,12 @@ def getDataFromGrasshopper(
|
|
13 |
return ""
|
14 |
|
15 |
|
16 |
-
demo = gr.Interface(
|
|
|
|
|
|
|
|
|
|
|
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 |
|