Nymbo commited on
Commit
fbe1950
·
verified ·
1 Parent(s): cd386c0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -168,6 +168,7 @@ providers_list = [
168
  "fireworks-ai", # Fireworks AI
169
  "hyperbolic", # Hyperbolic
170
  "nebius", # Nebius
 
171
  ]
172
 
173
  provider_radio = gr.Radio(
@@ -246,10 +247,10 @@ demo = gr.ChatInterface(
246
  top_p_slider,
247
  frequency_penalty_slider,
248
  seed_slider,
249
- custom_model_box,
250
- provider_radio,
251
- model_search_box,
252
- featured_model_radio
253
  ],
254
  fill_height=True,
255
  chatbot=chatbot,
 
168
  "fireworks-ai", # Fireworks AI
169
  "hyperbolic", # Hyperbolic
170
  "nebius", # Nebius
171
+ "openai" # OpenAI compatible endpoints
172
  ]
173
 
174
  provider_radio = gr.Radio(
 
247
  top_p_slider,
248
  frequency_penalty_slider,
249
  seed_slider,
250
+ provider_radio, # Provider selection (moved up)
251
+ custom_model_box, # Custom Model (moved down)
252
+ model_search_box, # Model search box
253
+ featured_model_radio # Featured model radio
254
  ],
255
  fill_height=True,
256
  chatbot=chatbot,