Skip to content

Commit 43dc307

Browse files
committed
Added new models / minor fix
1 parent 2aee6e1 commit 43dc307

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/simconfig/base_config.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,15 @@
3434
## Available LLM Models, we can add more.
3535
MODELS_TYPE = {
3636
"Local": ["Meta-Llama-3.1-8B-Instruct", "phi-3.5-mini"],
37-
"Anthropic": ["claude-3-5-sonnet", "claude-3-haiku"],
37+
"Anthropic": ["claude-3-5-sonnet", "claude-3-haiku", "claude-3-5-haiku-latest"],
3838
"OpenAI": [
3939
"gpt-4o-mini",
4040
"gpt-4o",
4141
"gpt-4-turbo",
4242
"gpt-3.5-turbo",
4343
"o1-preview",
4444
"o1-mini",
45+
"o3-mini"
4546
],
4647
}
4748
## Local models info

src/simulator/utils.py

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
from functools import partial
1313

1414
from simconfig import base_config
15-
from simulator.logging import logger
1615

1716

1817
class LLM:

0 commit comments

Comments
 (0)