feat(OpenAI Node): Add support for gpt4 on chat completion (#5692)

This commit is contained in:
Jon 2023-03-15 09:41:02 +00:00 committed by GitHub
parent d1e3c192ba
commit ba73fff27d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,6 +51,22 @@ const completeOperations: INodeProperties[] = [
name: 'gpt-3.5-turbo-0301',
value: 'gpt-3.5-turbo-0301',
},
{
name: 'gpt-4',
value: 'gpt-4',
},
{
name: 'gpt-4-0314',
value: 'gpt-4-0314',
},
{
name: 'gpt-4-32k',
value: 'gpt-4-32k',
},
{
name: 'gpt-4-32k-0314',
value: 'gpt-4-32k-0314',
},
],
routing: {
send: {