1

The ChatGPT Plus version offers GPT-3.5 Turbo and GPT-4, and I was able to easily find official documentation about them.

So what are the model versions used in the free version of ChatGPT? I see it says text-davinci-002-render-sha, so is that text-davinci-002?

I checked the official ChatGPT documentation and saw different versions of the GPT-3.5 model: (https://platform.openai.com/docs/models/gpt-3-5)

I found that ChatGPT's default mode calls text-davinci-002, but actually leads to the turbo model. (https://github.com/acheong08/ChatGPT/pull/759)

1 Answers1

-1

The list of accessible models can be retrieved from the /models endpoint of the OpenAI API.

curl https://api.openai.com/v1/models \
  -H "Authorization: Bearer $OPENAI_API_KEY"

As of May, 2023 the models returned are:

ada, ada-code-search-code, ada-code-search-text, ada-search-document, ada-search-query, ada-similarity, ada:2020-05-03, babbage, babbage-code-search-code, babbage-code-search-text, babbage-search-document, babbage-search-query, babbage-similarity, babbage:2020-05-03, code-davinci-edit-001, code-search-ada-code-001, code-search-ada-text-001, code-search-babbage-code-001, code-search-babbage-text-001, curie, curie-instruct-beta, curie-search-document, curie-search-query, curie-similarity, curie:2020-05-03, cushman:2020-05-03, davinci, davinci-if:3.0.0, davinci-instruct-beta, davinci-instruct-beta:2.0.0, davinci-search-document, davinci-search-query, davinci-similarity, davinci:2020-05-03, gpt-3.5-turbo, gpt-3.5-turbo-0301, if-curie-v2, if-davinci-v2, if-davinci:3.0.0, text-ada-001, text-ada:001, text-babbage-001, text-babbage:001, text-curie-001, text-curie:001, text-davinci-001, text-davinci-002, text-davinci-003, text-davinci-edit-001, text-davinci:001, text-embedding-ada-002, text-search-ada-doc-001, text-search-ada-query-001, text-search-babbage-doc-001, text-search-babbage-query-001, text-search-curie-doc-001, text-search-curie-query-001, text-search-davinci-doc-001, text-search-davinci-query-001, text-similarity-ada-001, text-similarity-babbage-001, text-similarity-curie-001, text-similarity-davinci-001, whisper-1

Feckmore
  • 4,322
  • 6
  • 43
  • 51