Add descriptions
This commit is contained in:
parent
f80547af60
commit
2e8bbaeab1
|
|
@ -43,6 +43,7 @@ class VectaraExisting_VectorStores implements INode {
|
||||||
{
|
{
|
||||||
label: 'Sentences Before',
|
label: 'Sentences Before',
|
||||||
name: 'sentencesBefore',
|
name: 'sentencesBefore',
|
||||||
|
description: 'Number of sentences to fetch before the matched sentence. Defaults to 2.',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
additionalParams: true,
|
additionalParams: true,
|
||||||
optional: true
|
optional: true
|
||||||
|
|
@ -50,6 +51,7 @@ class VectaraExisting_VectorStores implements INode {
|
||||||
{
|
{
|
||||||
label: 'Sentences After',
|
label: 'Sentences After',
|
||||||
name: 'sentencesAfter',
|
name: 'sentencesAfter',
|
||||||
|
description: 'Number of sentences to fetch after the matched sentence. Defaults to 2.',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
additionalParams: true,
|
additionalParams: true,
|
||||||
optional: true
|
optional: true
|
||||||
|
|
@ -57,6 +59,8 @@ class VectaraExisting_VectorStores implements INode {
|
||||||
{
|
{
|
||||||
label: 'Lambda',
|
label: 'Lambda',
|
||||||
name: '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',
|
type: 'number',
|
||||||
additionalParams: true,
|
additionalParams: true,
|
||||||
optional: true
|
optional: true
|
||||||
|
|
|
||||||
|
|
@ -52,6 +52,7 @@ class VectaraUpsert_VectorStores implements INode {
|
||||||
{
|
{
|
||||||
label: 'Sentences Before',
|
label: 'Sentences Before',
|
||||||
name: 'sentencesBefore',
|
name: 'sentencesBefore',
|
||||||
|
description: 'Number of sentences to fetch before the matched sentence. Defaults to 2.',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
additionalParams: true,
|
additionalParams: true,
|
||||||
optional: true
|
optional: true
|
||||||
|
|
@ -59,6 +60,7 @@ class VectaraUpsert_VectorStores implements INode {
|
||||||
{
|
{
|
||||||
label: 'Sentences After',
|
label: 'Sentences After',
|
||||||
name: 'sentencesAfter',
|
name: 'sentencesAfter',
|
||||||
|
description: 'Number of sentences to fetch after the matched sentence. Defaults to 2.',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
additionalParams: true,
|
additionalParams: true,
|
||||||
optional: true
|
optional: true
|
||||||
|
|
@ -66,6 +68,8 @@ class VectaraUpsert_VectorStores implements INode {
|
||||||
{
|
{
|
||||||
label: 'Lambda',
|
label: 'Lambda',
|
||||||
name: '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',
|
type: 'number',
|
||||||
additionalParams: true,
|
additionalParams: true,
|
||||||
optional: true
|
optional: true
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue