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

Commit

Permalink
perf(openai): update model versions for GPTs (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
frgfm authored Feb 5, 2024
1 parent a7b7f01 commit 0bb92dc
Showing 1 changed file with 4 additions and 4 deletions.
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

0 comments on commit 0bb92dc

Please sign in to comment.