diff --git a/includes/Classifai/Providers/OpenAI/ChatGPT.php b/includes/Classifai/Providers/OpenAI/ChatGPT.php index 948eabcf7..6a50aab76 100644 --- a/includes/Classifai/Providers/OpenAI/ChatGPT.php +++ b/includes/Classifai/Providers/OpenAI/ChatGPT.php @@ -33,14 +33,14 @@ class ChatGPT extends Provider { * * @var string */ - protected $chatgpt_model = 'gpt-3.5-turbo'; + protected $chatgpt_model = 'gpt-4o-mini'; /** * Maximum number of tokens our model supports * * @var int */ - protected $max_tokens = 16385; + protected $max_tokens = 128000; /** * OpenAI ChatGPT constructor.