Spaces:
Running
Running
Reintroducing dropdown
Browse files
app.py
CHANGED
|
@@ -275,7 +275,12 @@ with gr.Blocks() as demo:
|
|
| 275 |
gr.Slider(
|
| 276 |
label='Total budget of trip in USD', show_label=True, value=1000, minimum=500, maximum=10000, step=500
|
| 277 |
)
|
| 278 |
-
inp_model = gr.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 279 |
plan_button = gr.Button("Plan your Trip")
|
| 280 |
inputs = [inp_source, inp_dest, inp_cal, inp_age, inp_days, inp_interests, inp_cuisine, inp_children, inp_budget, inp_model]
|
| 281 |
|
|
|
|
| 275 |
gr.Slider(
|
| 276 |
label='Total budget of trip in USD', show_label=True, value=1000, minimum=500, maximum=10000, step=500
|
| 277 |
)
|
| 278 |
+
inp_model = gr.Dropdown(["Meta-Llama-3.3-70B-Instruct",
|
| 279 |
+
"DeepSeek-V3-0324",
|
| 280 |
+
"Llama-4-Maverick-17B-128E-Instruct",
|
| 281 |
+
"Meta-Llama-3.1-8B-Instruct"],
|
| 282 |
+
label='Sambanova Model Name',
|
| 283 |
+
info='We add models as Sambanova supports them')
|
| 284 |
plan_button = gr.Button("Plan your Trip")
|
| 285 |
inputs = [inp_source, inp_dest, inp_cal, inp_age, inp_days, inp_interests, inp_cuisine, inp_children, inp_budget, inp_model]
|
| 286 |
|