Update app.py
Browse files
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.
|
| 61 |
label="Writer Model",
|
| 62 |
-
value="anthropic/claude-3.
|
| 63 |
allow_custom_value=True
|
| 64 |
)
|
| 65 |
searcher_model = gr.Dropdown(
|
| 66 |
-
["perplexity/llama-3
|
| 67 |
label="Searcher Model",
|
| 68 |
-
value="perplexity/llama-3-sonar-large-
|
| 69 |
allow_custom_value=True
|
| 70 |
)
|
| 71 |
critic_model = gr.Dropdown(
|
| 72 |
-
["anthropic/claude-3.
|
| 73 |
label="Critic Model",
|
| 74 |
-
value="anthropic/claude-3.
|
| 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 |
|