diff options
author | bobzel <zzzman@gmail.com> | 2024-04-14 16:32:50 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-04-14 16:32:50 -0400 |
commit | 116b2d692e93a14d7ef68c859edf4b7f723a9f54 (patch) | |
tree | dc9be8a9e36b6cc2a8a2d94bfd6b713f526bed37 /src/client/apis/gpt | |
parent | d8e4ff91b55736608a02d1ac68cb5c165841d6bb (diff) | |
parent | a6577f0c085d206db11e491bd4a1e4bae70e0ee6 (diff) |
update to master
Diffstat (limited to 'src/client/apis/gpt')
-rw-r--r-- | src/client/apis/gpt/GPT.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/apis/gpt/GPT.ts b/src/client/apis/gpt/GPT.ts index cea862330..fb51278ae 100644 --- a/src/client/apis/gpt/GPT.ts +++ b/src/client/apis/gpt/GPT.ts @@ -14,9 +14,9 @@ type GPTCallOpts = { }; const callTypeMap: { [type: string]: GPTCallOpts } = { - summary: { model: 'text-davinci-003', maxTokens: 256, temp: 0.5, prompt: 'Summarize this text in simpler terms: ' }, - edit: { model: 'text-davinci-003', maxTokens: 256, temp: 0.5, prompt: 'Reword this: ' }, - completion: { model: 'text-davinci-003', maxTokens: 256, temp: 0.5, prompt: '' }, + summary: { model: 'gpt-3.5-turbo-instruct', maxTokens: 256, temp: 0.5, prompt: 'Summarize this text in simpler terms: ' }, + edit: { model: 'gpt-3.5-turbo-instruct', maxTokens: 256, temp: 0.5, prompt: 'Reword this: ' }, + completion: { model: 'gpt-3.5-turbo-instruct', maxTokens: 256, temp: 0.5, prompt: '' }, }; /** |