davidlms commited on
Commit
6452362
·
verified ·
1 Parent(s): a040dc6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -57,21 +57,21 @@ def create_interface():
57
  api_key = gr.Textbox(label="OpenRouter API Key", type="password")
58
 
59
  writer_model = gr.Dropdown(
60
- ["anthropic/claude-3.5-sonnet:beta", "openai/gpt-4o-2024-08-06", "google/gemini-pro-1.5-exp"],
61
  label="Writer Model",
62
- value="anthropic/claude-3.5-sonnet:beta",
63
  allow_custom_value=True
64
  )
65
  searcher_model = gr.Dropdown(
66
- ["perplexity/llama-3-sonar-large-32k-online", "perplexity/llama-3.1-sonar-huge-128k-online", "perplexity/llama-3.1-sonar-small-128k-online"],
67
  label="Searcher Model",
68
- value="perplexity/llama-3-sonar-large-32k-online",
69
  allow_custom_value=True
70
  )
71
  critic_model = gr.Dropdown(
72
- ["anthropic/claude-3.5-sonnet:beta", "openai/gpt-4o-2024-08-06", "google/gemini-pro-1.5-exp"],
73
  label="Critic Model",
74
- value="anthropic/claude-3.5-sonnet:beta",
75
  allow_custom_value=True
76
  )
77
 
 
57
  api_key = gr.Textbox(label="OpenRouter API Key", type="password")
58
 
59
  writer_model = gr.Dropdown(
60
+ ["anthropic/claude-3.7-sonnet", "openai/chatgpt-4o-latest", "google/gemini-pro-1.5"],
61
  label="Writer Model",
62
+ value="anthropic/claude-3.7-sonnet",
63
  allow_custom_value=True
64
  )
65
  searcher_model = gr.Dropdown(
66
+ ["perplexity/llama-3.1-sonar-small-128k-online", "perplexity/llama-3.1-sonar-large-128k-online"],
67
  label="Searcher Model",
68
+ value="perplexity/llama-3.1-sonar-large-128k-online",
69
  allow_custom_value=True
70
  )
71
  critic_model = gr.Dropdown(
72
+ ["anthropic/claude-3.7-sonnet", "openai/chatgpt-4o-latest", "google/gemini-pro-1.5"],
73
  label="Critic Model",
74
+ value="anthropic/claude-3.7-sonnet",
75
  allow_custom_value=True
76
  )
77