Add descriptions
This commit is contained in:
parent
f80547af60
commit
2e8bbaeab1
|
|
@ -43,6 +43,7 @@ class VectaraExisting_VectorStores implements INode {
|
|||
{
|
||||
label: 'Sentences Before',
|
||||
name: 'sentencesBefore',
|
||||
description: 'Number of sentences to fetch before the matched sentence. Defaults to 2.',
|
||||
type: 'number',
|
||||
additionalParams: true,
|
||||
optional: true
|
||||
|
|
@ -50,6 +51,7 @@ class VectaraExisting_VectorStores implements INode {
|
|||
{
|
||||
label: 'Sentences After',
|
||||
name: 'sentencesAfter',
|
||||
description: 'Number of sentences to fetch after the matched sentence. Defaults to 2.',
|
||||
type: 'number',
|
||||
additionalParams: true,
|
||||
optional: true
|
||||
|
|
@ -57,6 +59,8 @@ class VectaraExisting_VectorStores implements INode {
|
|||
{
|
||||
label: 'Lambda',
|
||||
name: 'lambda',
|
||||
description:
|
||||
'Improves retrieval accuracy by adjusting the balance (from 0 to 1) between neural search and keyword-based search factors.',
|
||||
type: 'number',
|
||||
additionalParams: true,
|
||||
optional: true
|
||||
|
|
|
|||
|
|
@ -52,6 +52,7 @@ class VectaraUpsert_VectorStores implements INode {
|
|||
{
|
||||
label: 'Sentences Before',
|
||||
name: 'sentencesBefore',
|
||||
description: 'Number of sentences to fetch before the matched sentence. Defaults to 2.',
|
||||
type: 'number',
|
||||
additionalParams: true,
|
||||
optional: true
|
||||
|
|
@ -59,6 +60,7 @@ class VectaraUpsert_VectorStores implements INode {
|
|||
{
|
||||
label: 'Sentences After',
|
||||
name: 'sentencesAfter',
|
||||
description: 'Number of sentences to fetch after the matched sentence. Defaults to 2.',
|
||||
type: 'number',
|
||||
additionalParams: true,
|
||||
optional: true
|
||||
|
|
@ -66,6 +68,8 @@ class VectaraUpsert_VectorStores implements INode {
|
|||
{
|
||||
label: 'Lambda',
|
||||
name: 'lambda',
|
||||
description:
|
||||
'Improves retrieval accuracy by adjusting the balance (from 0 to 1) between neural search and keyword-based search factors.',
|
||||
type: 'number',
|
||||
additionalParams: true,
|
||||
optional: true
|
||||
|
|
|
|||
Loading…
Reference in New Issue