Update default model to gpt-4o-mini

and give gpt-4o as the common alternative.
This commit is contained in:
Jeff Epler 2024-10-22 07:46:34 -05:00
parent 64c56e463b
commit 06482245b7

View file

@ -66,8 +66,8 @@ class EncodingMeta:
class ChatGPT:
@dataclass
class Parameters:
model: str = "gpt-4-turbo"
"""The model to use. The most common alternative value is 'gpt-3.5-turbo'."""
model: str = "gpt-4o-mini"
"""The model to use. The most common alternative value is 'gpt-4o'."""
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."""