Skip to content

Commit

Permalink
feat: DIA-1886: Add o3-mini OpenAI model (#325)
Browse files Browse the repository at this point in the history
Co-authored-by: hakan458 <[email protected]>
  • Loading branch information
hakan458 and hakan458 authored Feb 3, 2025
1 parent c07891e commit 8acdba7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions adala/runtimes/_litellm.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,8 @@ class LiteLLMChatRuntime(InstructorClientMixin, Runtime):
"""

model: str = "gpt-4o-mini"
max_tokens: int = 1000
temperature: float = 0.0
max_tokens: Optional[int] = 1000
temperature: Optional[float] = 0.0
seed: Optional[int] = 47

model_config = ConfigDict(extra="allow")
Expand Down Expand Up @@ -406,8 +406,8 @@ class AsyncLiteLLMChatRuntime(InstructorAsyncClientMixin, AsyncRuntime):
"""

model: str = "gpt-4o-mini"
max_tokens: int = 1000
temperature: float = 0.0
max_tokens: Optional[int] = 1000
temperature: Optional[float] = 0.0
seed: Optional[int] = 47

model_config = ConfigDict(extra="allow")
Expand Down

0 comments on commit 8acdba7

Please sign in to comment.