burman-ai commited on
Commit
8668b24
·
verified ·
1 Parent(s): fe8aa25

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -1
app.py CHANGED
@@ -163,7 +163,19 @@ with demo:
163
  )
164
  print("Model search box created.")
165
 
166
-
 
 
 
 
 
 
 
 
 
 
 
 
167
 
168
  def filter_models(search_term):
169
  print(f"Filtering models with search term: {search_term}")
 
163
  )
164
  print("Model search box created.")
165
 
166
+ models_list = [
167
+
168
+
169
+ ]
170
+ print("Models list initialized.")
171
+
172
+ featured_model_radio = gr.Radio(
173
+ label="Select a model below",
174
+ choices=models_list,
175
+ value="meta-llama/Llama-3.2-3B-Instruct",
176
+ interactive=True
177
+ )
178
+ print("Featured models radio button created.")
179
 
180
  def filter_models(search_term):
181
  print(f"Filtering models with search term: {search_term}")