Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

perf(openai): update model versions for GPTs #86

Merged
merged 1 commit into from
Feb 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/app/schemas/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@

class OpenAIModel(str, Enum):
# https://platform.openai.com/docs/models/overview
GPT3_5_TURBO: str = "gpt-3.5-turbo-1106"
GPT3_5_TURBO_LEGACY: str = "gpt-3.5-turbo-0613"
GPT4_TURBO: str = "gpt-4-1106-preview"
GPT4: str = "gpt-4-0613"
GPT3_5_TURBO: str = "gpt-3.5-turbo-0125"
GPT3_5_TURBO_LEGACY: str = "gpt-3.5-turbo-1106"
GPT4_TURBO: str = "gpt-4-0125-preview"
GPT4_TURBO_LEGACY: str = "gpt-4-1106-preview"


class OpenAIChatRole(str, Enum):
Expand Down
Loading