mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-19 23:52:05 +03:00
Merge pull request #2 from vidluther/add-gpt4o-model-support
add-gpt4o-model-support
This commit is contained in:
commit
3842f352bd
app/src
@ -7,7 +7,8 @@ export enum ModelKind {
|
||||
export enum OpenAIModelName {
|
||||
GPT35Turbo = 'gpt-3.5-turbo',
|
||||
GPT4 = 'gpt-4',
|
||||
GPT4Turbo = 'gpt-4-turbo-preview'
|
||||
GPT4Turbo = 'gpt-4-turbo',
|
||||
GPT4o = 'gpt-4o'
|
||||
}
|
||||
|
||||
export enum AnthropicModelName {
|
||||
|
@ -91,6 +91,10 @@
|
||||
{
|
||||
name: 'GPT 4 Turbo',
|
||||
value: OpenAIModelName.GPT4Turbo
|
||||
},
|
||||
{
|
||||
name: 'GPT 4 Omni',
|
||||
value: OpenAIModelName.GPT4o
|
||||
}
|
||||
];
|
||||
|
||||
|
@ -100,6 +100,10 @@
|
||||
{
|
||||
name: 'GPT 4 Turbo',
|
||||
value: OpenAIModelName.GPT4Turbo
|
||||
},
|
||||
{
|
||||
name: 'GPT 4 Omni',
|
||||
value: OpenAIModelName.GPT4o
|
||||
}
|
||||
];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user