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 c3cba78 commit 5e64e13Copy full SHA for 5e64e13
src/llm_change_agent/utils/llm_utils.py
@@ -47,10 +47,9 @@ def get_lbl_cborg_models():
47
"""Get the list of LBNL-hosted models via CBORG."""
48
return [
49
"lbl/llama-3", # LBNL-hosted model (free to use)
50
- "openai/gpt-4o-mini", # OpenAI-hosted model
51
- "anthropic/claude-haiku", # Anthropic-hosted model
52
- "anthropic/claude-sonnet", # Anthropic-hosted model
53
- "anthropic/claude-opus", # Anthropic-hosted model
+ "openai/chatgpt:latest", # OpenAI-hosted model
+ "anthropic/claude:latest", # Anthropic-hosted model
+ "google/gemini:latest", # Google-hosted model
54
]
55
56
0 commit comments