We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4d8c9a commit efe308bCopy full SHA for efe308b
plugin/ai_helper/AiHelperPlugin.php
@@ -76,7 +76,7 @@ public function openAiGetCompletionText(
76
$ai = new OpenAi($apiKey, $organizationId);
77
78
$temperature = 0.2;
79
- $model = 'text-davinci-003';
+ $model = 'gpt-3.5-turbo-instruct';
80
$maxTokens = 2000;
81
$frequencyPenalty = 0;
82
$presencePenalty = 0.6;
plugin/ai_helper/src/openai/OpenAi.php
@@ -5,7 +5,7 @@
5
6
class OpenAi
7
{
8
- private $model = "text-davinci-003"; // See https://platform.openai.com/docs/models for possible models
+ private $model = "gpt-3.5-turbo-instruct"; // See https://platform.openai.com/docs/models for possible models
9
private $headers;
10
private $contentTypes;
11
private $timeout = 0;
0 commit comments