GPT API: Difference between revisions
(→model) |
(→model) |
||
Line 5: | Line 5: | ||
<pre> | <pre> | ||
model: "gpt-3.5-turbo" | model: "gpt-3.5-turbo" | ||
</ | </pre> | ||
The value for the model field is a string that contains the name of the [[GPT]] [[model]] you want to use. | The value for the model field is a string that contains the name of the [[GPT]] [[model]] you want to use. | ||
Line 25: | Line 25: | ||
! Context Window | ! Context Window | ||
|- | |- | ||
| gpt-3.5-turbo | | gpt-3.5-turbo || 4,096 tokens | ||
| 4,096 tokens | |||
|- | |- | ||
| gpt-3.5-turbo-16k | | gpt-3.5-turbo-16k || 16,384 tokens | ||
| 16,384 tokens | |||
|- | |- | ||
| gpt-4 | | gpt-4 || 8,192 tokens | ||
| 8,192 tokens | |||
|- | |- | ||
| gpt-4-32k | | gpt-4-32k || 32,768 tokens | ||
| 32,768 tokens | |||
|} | |} | ||
Revision as of 19:08, 15 July 2023
Documentation and Guide for OpenAI's GPT API.
Request Fields
model
model: "gpt-3.5-turbo"
The value for the model field is a string that contains the name of the GPT model you want to use.
The value for the model field can have up to 3 components:
model: "gpt-3.5-turbo-16k-0613" </prev> In the example above, the gpt-3.5-turbo is the name of the model. The 16k is the context length in tokens. The 0613 is the date when the model snapshot is taken, which is June 13th. Model Names: Context Window (# of Tokens)
Model | Context Window |
---|---|
gpt-3.5-turbo | 4,096 tokens |
gpt-3.5-turbo-16k | 16,384 tokens |
gpt-4 | 8,192 tokens |
gpt-4-32k | 32,768 tokens |