samuelemarro commited on
Commit
7791c1c
·
1 Parent(s): 07b20fe

Model -> Agent in dropdown.

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -103,9 +103,9 @@ def main():
103
 
104
  with gr.Row(equal_height=True):
105
  with gr.Column(scale=1):
106
- alice_model_dd = gr.Dropdown(label="Alice Model", choices=model_options, value="gpt-4o")
107
  with gr.Column(scale=1):
108
- bob_model_dd = gr.Dropdown(label="Bob Model", choices=model_options, value="claude-3-5-sonnet-latest")
109
 
110
 
111
 
 
103
 
104
  with gr.Row(equal_height=True):
105
  with gr.Column(scale=1):
106
+ alice_model_dd = gr.Dropdown(label="Alice Agent", choices=model_options, value="gpt-4o")
107
  with gr.Column(scale=1):
108
+ bob_model_dd = gr.Dropdown(label="Bob Agent", choices=model_options, value="claude-3-5-sonnet-latest")
109
 
110
 
111