Skip to content

Commit

Permalink
Merge pull request #1599 from fletch-ai/chore/Update-AzureOpenAI-LLM-…
Browse files Browse the repository at this point in the history
…Types

Added support for gpt-4 and gpt-4-32k models
  • Loading branch information
HenryHengZJ committed Jan 25, 2024
2 parents 1104257 + 61e1866 commit 523c9a1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion packages/components/nodes/llms/Azure OpenAI/AzureOpenAI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class AzureOpenAI_LLMs implements INode {
constructor() {
this.label = 'Azure OpenAI'
this.name = 'azureOpenAI'
this.version = 2.0
this.version = 2.1
this.type = 'AzureOpenAI'
this.icon = 'Azure.svg'
this.category = 'LLMs'
Expand Down Expand Up @@ -89,6 +89,14 @@ class AzureOpenAI_LLMs implements INode {
{
label: 'gpt-35-turbo',
name: 'gpt-35-turbo'
},
{
label: 'gpt-4',
name: 'gpt-4'
},
{
label: 'gpt-4-32k',
name: 'gpt-4-32k'
}
],
default: 'text-davinci-003',
Expand Down

0 comments on commit 523c9a1

Please sign in to comment.