mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
feat(OpenAI Node): Add support for gpt4 on chat completion (#5692)
This commit is contained in:
parent
d1e3c192ba
commit
ba73fff27d
|
@ -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: {
|
||||
|
|
Loading…
Reference in a new issue