-
Notifications
You must be signed in to change notification settings - Fork 14
/
ChatGPT.sublime-settings
29 lines (24 loc) · 1.33 KB
/
ChatGPT.sublime-settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
// API Key is required to use OpenAI ChatGPT
// Create your api key at https://beta.openai.com/account/api-keys
// More info at https://openai.com/blog/openai-api/
"api_key": "",
// The default model is the used by chatgpt web tool
// More info at https://beta.openai.com/docs/models
"model": "text-davinci-003",
// Higher values means the model will take more risks.
// Try 0.9 for more creative applications, and 0 (argmax sampling) for ones with a well-defined answer.
// More info at https://algowriting.medium.com/gpt-3-temperature-setting-101-41200ff0d0be
// API Details at https://beta.openai.com/docs/api-reference/completions/create#completions/create-temperature
"temperature": 0.5,
// The token count of your prompt plus max_tokens cannot exceed the model's context length.
// Most models have a context length of 2048 tokens (except for the newest models, which support 4096).
// API Details at https://beta.openai.com/docs/api-reference/completions/create#completions/create-max_tokens
"max_tokens": 1024,
// Seconds to wait for OpenAI response.
// If the OpenAI API is busy it may return a timeout frequently.
"timeout": 30,
// Print debug messages in console.
// You can open the console from the menu option `View` > `Show Console`
"debug": false
}