We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab347e7 commit a86f8c2Copy full SHA for a86f8c2
entrypoint.py
@@ -166,10 +166,15 @@ def get_config_class_dict() -> Dict[str, type]:
166
"""
167
return {
168
'claude': ClaudeConfig,
169
+ 'claude-sonnet-4-20250514': ClaudeConfig, # Add specific model
170
'gemini': GeminiConfig,
171
+ 'gemini-2.5-flash': GeminiConfig,
172
'grok': GrokConfig,
173
+ 'grok-code-fast': GrokConfig,
174
'nvidia_nim': NvidiaNIMConfig,
175
+ 'google/gemma-2-9b-it': NvidiaNIMConfig, # Add specific model
176
'perplexity': PerplexityConfig,
177
+ 'sonar': PerplexityConfig # Add specific model
178
}
179
180
0 commit comments