Spaces:
Sleeping
Sleeping
umm-maybe
commited on
Commit
·
4ab6b0f
1
Parent(s):
69889de
Fix typo
Browse files
app.py
CHANGED
@@ -67,7 +67,7 @@ def getTour(hh_income,hh_size,age,sex,edu,wrk):
|
|
67 |
print("Nothing extracted!")
|
68 |
return activity_list
|
69 |
|
70 |
-
with gr.Interface(fn=getTour, inputs=
|
71 |
iface.launch(share=True)
|
72 |
|
73 |
inputs = [
|
|
|
67 |
print("Nothing extracted!")
|
68 |
return activity_list
|
69 |
|
70 |
+
with gr.Interface(fn=getTour, inputs=inputs, outputs="json", title="GPT-Tour", description="Generate a tour for a person", allow_flagging=False, allow_screenshot=False, allow_embedding=False) as iface:
|
71 |
iface.launch(share=True)
|
72 |
|
73 |
inputs = [
|