modify input parameters

This commit is contained in:
chungyau97
2023-05-12 20:26:09 +07:00
parent 5c49a58985
commit c596feb09a
3 changed files with 128 additions and 30 deletions
@@ -42,8 +42,18 @@ class AzureOpenAIEmbedding_Embeddings implements INode {
{
label: 'Azure OpenAI Api Version',
name: 'azureOpenAIApiVersion',
type: 'string',
placeholder: 'YOUR-API-VERSION'
type: 'options',
options: [
{
label: '2023-03-15-preview',
name: '2023-03-15-preview'
},
{
label: '2022-12-01',
name: '2022-12-01'
}
],
default: '2023-03-15-preview'
},
{
label: 'Strip New Lines',