Skip to content

Commit

Permalink
fix(OpenAI Chat Model Node): Restore default model value (#12745)
Browse files Browse the repository at this point in the history
OlegIvaniv authored Jan 21, 2025
1 parent 36bc164 commit d1b6692
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -147,7 +147,7 @@ export class LmChatOpenAi implements INodeType {
displayName: 'Model',
name: 'model',
type: 'resourceLocator',
default: { mode: 'list', value: '' },
default: { mode: 'list', value: 'gpt-4o-mini' },
required: true,
modes: [
{
@@ -164,7 +164,7 @@ export class LmChatOpenAi implements INodeType {
displayName: 'ID',
name: 'id',
type: 'string',
placeholder: '2302163813',
placeholder: 'gpt-4o-mini',
},
],
description: 'The model. Choose from the list, or specify an ID.',

0 comments on commit d1b6692

Please sign in to comment.