Skip to content

Commit

Permalink
[TLM] Release o1 models (#353)
Browse files Browse the repository at this point in the history
  • Loading branch information
huiwengoh authored Jan 29, 2025
1 parent 76f479a commit 6be1bcb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions cleanlab_studio/internal/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
"gpt-4o",
"gpt-4o-mini",
"o1-preview",
"o1",
"o1-mini",
"claude-3-haiku",
"claude-3.5-haiku",
"claude-3-sonnet",
Expand Down
2 changes: 1 addition & 1 deletion cleanlab_studio/studio/trustworthy_language_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ class TLMOptions(TypedDict):
Args:
model (str, default = "gpt-4o-mini"): underlying base LLM to use (better models yield better results, faster models yield faster/cheaper results).
- Models currently supported include: "gpt-4o-mini", "gpt-4o", "o1-preview", "gpt-3.5-turbo-16k", "gpt-4", "claude-3.5-sonnet", "claude-3-haiku".
- Additional models supported in beta include: "claude-3.5-sonnet-v2", "claude-3.5-haiku", "nova-micro", "nova-lite", "nova-pro".
- Additional models supported in beta include: "o1", "o1-mini", "claude-3.5-sonnet-v2", "claude-3.5-haiku", "nova-micro", "nova-lite", "nova-pro".
max_tokens (int, default = 512): the maximum number of tokens to generate in the TLM response.
This number will impact the maximum number of tokens you will see in the output response, and also the number of tokens
Expand Down
4 changes: 4 additions & 0 deletions tests/tlm/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
"claude-3.5-sonnet",
"claude-3.5-sonnet-v2",
"o1-preview",
"o1",
"o1-mini",
"nova-lite",
"nova-pro",
]
Expand All @@ -35,6 +37,8 @@
"claude-3.5-sonnet",
"claude-3.5-sonnet-v2",
"o1-preview",
"o1",
"o1-mini",
"nova-micro",
"nova-lite",
"nova-pro",
Expand Down

0 comments on commit 6be1bcb

Please sign in to comment.