Spaces:
Sleeping
Sleeping
init
Browse files
app.py
CHANGED
@@ -25,7 +25,6 @@ with gr.Blocks() as b:
|
|
25 |
|
26 |
output = gr.outputs.Label(label="Distance")
|
27 |
|
28 |
-
btn.click(fn=calc_distance
|
29 |
|
30 |
-
|
31 |
-
b.launch()
|
|
|
25 |
|
26 |
output = gr.outputs.Label(label="Distance")
|
27 |
|
28 |
+
btn.click(fn=calc_distance, inputs=(text1, text2, openai_apikey), outputs=output)
|
29 |
|
30 |
+
b.launch()
|
|