Update default model to gpt-4o-mini
and give gpt-4o as the common alternative.
This commit is contained in:
parent
64c56e463b
commit
06482245b7
1 changed files with 2 additions and 2 deletions
|
|
@ -66,8 +66,8 @@ class EncodingMeta:
|
||||||
class ChatGPT:
|
class ChatGPT:
|
||||||
@dataclass
|
@dataclass
|
||||||
class Parameters:
|
class Parameters:
|
||||||
model: str = "gpt-4-turbo"
|
model: str = "gpt-4o-mini"
|
||||||
"""The model to use. The most common alternative value is 'gpt-3.5-turbo'."""
|
"""The model to use. The most common alternative value is 'gpt-4o'."""
|
||||||
|
|
||||||
max_request_tokens: int = 1024
|
max_request_tokens: int = 1024
|
||||||
"""The approximate greatest number of tokens to send in a request. When the session is long, the system prompt and 1 or more of the most recent interaction steps are sent."""
|
"""The approximate greatest number of tokens to send in a request. When the session is long, the system prompt and 1 or more of the most recent interaction steps are sent."""
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue