File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,9 @@ class LLMConfig(BaseModel):
13
13
14
14
class OpenAIConfig (LLMConfig ):
15
15
"""Configuration for OpenAI LLM model."""
16
+
16
17
def __init__ (self , ** data ):
18
+ """Initialize the OpenAIConfig class."""
17
19
super ().__init__ (** data )
18
20
if self .model .startswith ("o1" ):
19
21
self .temperature = 1.0
Original file line number Diff line number Diff line change @@ -77,9 +77,9 @@ def get_lbl_cborg_models():
77
77
"lbl/cborg-chat:latest" , # LBL-hosted model
78
78
"lbl/cborg-chat-nano:latest" , # LBL-hosted model
79
79
"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
83
83
]
84
84
85
85
You can’t perform that action at this time.
0 commit comments