Skip to content

Commit

Permalink
Merge pull request #785 from 10up/feature/gpt-4o-mini
Browse files Browse the repository at this point in the history
Update to the new GPT-4o mini model
  • Loading branch information
dkotter committed Jul 22, 2024
2 parents f77cad1 + 047b85e commit f0bdd86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions includes/Classifai/Providers/OpenAI/ChatGPT.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit f0bdd86

Please sign in to comment.