Skip to content

Commit 1758bab

Browse files
committed
formatted
1 parent 7d2cf39 commit 1758bab

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/llm_change_agent/config/llm_config.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ class LLMConfig(BaseModel):
1313

1414
class OpenAIConfig(LLMConfig):
1515
"""Configuration for OpenAI LLM model."""
16+
1617
def __init__(self, **data):
18+
"""Initialize the OpenAIConfig class."""
1719
super().__init__(**data)
1820
if self.model.startswith("o1"):
1921
self.temperature = 1.0

src/llm_change_agent/utils/llm_utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ def get_lbl_cborg_models():
7777
"lbl/cborg-chat:latest", # LBL-hosted model
7878
"lbl/cborg-chat-nano:latest", # LBL-hosted model
7979
"lbl/cborg-coder:latest", # LBL-hosted model
80-
"openai/chatgpt:latest", # LBL cloud-hosted model
81-
"anthropic/claude:latest", # LBL cloud-hosted model
82-
"google/gemini:latest", # LBL cloud-hosted model
80+
"openai/chatgpt:latest", # LBL cloud-hosted model
81+
"anthropic/claude:latest", # LBL cloud-hosted model
82+
"google/gemini:latest", # LBL cloud-hosted model
8383
]
8484

8585

0 commit comments

Comments
 (0)