Skip to content

What is default model used for Open AI ? #361

Closed Answered by gventuri
vpurandara asked this question in Q&A
Discussion options

You must be logged in to vote

Hi @vpurandara the default model is gpt-3.5-turbo.

Here's a list of all the supported models:

[
        "gpt-4",
        "gpt-4-0613",
        "gpt-4-32k",
        "gpt-4-32k-0613",
        "gpt-3.5-turbo",
        "gpt-3.5-turbo-16k",
        "gpt-3.5-turbo-0613",
        "gpt-3.5-turbo-16k-0613",
]

You can use the model you prefer passing it when you instantiate the LLM, like this:

OpenAI(model="gpt-4")

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by gventuri
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #360 on July 13, 2023 10:19.