Spaces:
Sleeping
Sleeping
File size: 499 Bytes
d6e5163 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import gradio as gr
import groovy as gv
flow = gv.Flow(
# task="Find me some events in San Francisco related to board games using Meetup.",
task="Find me some events in {} related to {} using Meetup.",
inputs=[
gr.Dropdown(["San Francisco", "New York", "Chicago", "Los Angeles", "Boston"], allow_custom_value=True),
gr.Dropdown(["board games", "cooking", "hiking", "reading", "writing"], allow_custom_value=True),
],
)
if __name__ == "__main__":
flow.launch()
|