akhaliq HF staff commited on
Commit
04c5e9f
1 Parent(s): b767358

update gpt-4o-2024-11-20

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -92,9 +92,10 @@ with gr.Blocks(fill_height=True) as demo:
92
  with gr.Row():
93
  model_choice = gr.Dropdown(
94
  choices=[
95
- 'gpt-4o', # Most advanced model
96
- 'gpt-4o-2024-08-06', # Latest snapshot
97
- 'gpt-4o-2024-05-13', # Original snapshot
 
98
  'chatgpt-4o-latest', # Latest ChatGPT version
99
  'gpt-4o-mini', # Small model
100
  'gpt-4o-mini-2024-07-18', # Latest mini version
@@ -110,7 +111,7 @@ with gr.Blocks(fill_height=True) as demo:
110
  'gpt-4', # Standard GPT-4 model
111
  'gpt-4-0613' # Snapshot of GPT-4 from June 2023
112
  ],
113
- value='gpt-4o', # Default to the most advanced model
114
  label="Select Model",
115
  interactive=True
116
  )
 
92
  with gr.Row():
93
  model_choice = gr.Dropdown(
94
  choices=[
95
+ 'gpt-4o-2024-11-20', # Latest GPT-4o model
96
+ 'gpt-4o', # Previous most advanced model
97
+ 'gpt-4o-2024-08-06', # Latest snapshot
98
+ 'gpt-4o-2024-05-13', # Original snapshot
99
  'chatgpt-4o-latest', # Latest ChatGPT version
100
  'gpt-4o-mini', # Small model
101
  'gpt-4o-mini-2024-07-18', # Latest mini version
 
111
  'gpt-4', # Standard GPT-4 model
112
  'gpt-4-0613' # Snapshot of GPT-4 from June 2023
113
  ],
114
+ value='gpt-4o-2024-11-20', # Updated default to latest model
115
  label="Select Model",
116
  interactive=True
117
  )