-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2b398c1
commit 85ddb5a
Showing
2 changed files
with
28 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace LLM\Agents\OpenAI\Client; | ||
|
||
enum OpenAIModel: string | ||
{ | ||
case Gpt4o = 'gpt-4o'; | ||
case Gpt4oLatest = 'chatgpt-4o-latest'; | ||
case Gpt4o20240513 = 'gpt-4o-2024-05-13'; | ||
case Gpt4o20240806 = 'gpt-4o-2024-08-06'; | ||
|
||
case Gpt4oMini = 'gpt-4o-mini'; | ||
case Gpt4oMini20240718 = 'gpt-4o-mini-2024-07-18'; | ||
|
||
case Gpt4Turbo = 'gpt-4-turbo'; | ||
case Gpt4TurboPreview = 'gpt-4-turbo-preview'; | ||
|
||
case Gpt4 = 'gpt-4'; | ||
case Gpt40613 = 'gpt-4-0613'; | ||
|
||
case Gpt3Turbo = 'gpt-3.5-turbo'; | ||
case Gpt3Turbo1106 = 'gpt-3.5-turbo-1106'; | ||
case Gpt3TurboInstruct = 'gpt-3.5-turbo-instruct'; | ||
} |