Skip to content

Commit

Permalink
add gpt4 turbo (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
lorr1 committed Jan 15, 2024
1 parent a657bdd commit eb7e6fa
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion manifest/clients/openai_chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@
logger = logging.getLogger(__name__)

# List from https://platform.openai.com/docs/models/model-endpoint-compatibility
OPENAICHAT_ENGINES = {"gpt-3.5-turbo", "gpt-3.5-turbo-16k", "gpt-4", "gpt-4-32k"}
OPENAICHAT_ENGINES = {
"gpt-3.5-turbo",
"gpt-3.5-turbo-16k",
"gpt-4",
"gpt-4-32k",
"gpt-4-1106-preview",
}


class OpenAIChatClient(OpenAIClient):
Expand Down

0 comments on commit eb7e6fa

Please sign in to comment.