File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/components/nodes/vectorstores/Teradata Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -601,7 +601,7 @@ class Teradata_VectorStores implements INode {
601
601
}
602
602
603
603
async init ( nodeData : INodeData , _ : string , options : ICommonObject ) : Promise < any > {
604
- const log_level = 1 ;
604
+ const log_level = 0 ;
605
605
const docs = nodeData . inputs ?. document as Document [ ]
606
606
const embeddings = nodeData . inputs ?. embeddings as Embeddings
607
607
const embeddingsTableName = nodeData . inputs ?. embeddingsTableName as string
@@ -618,7 +618,7 @@ class Teradata_VectorStores implements INode {
618
618
const stopThreshold = parseFloat ( nodeData . inputs ?. stopThreshold as string ) || null
619
619
const seed = parseInt ( nodeData . inputs ?. seed as string ) || null
620
620
const numInit = parseInt ( nodeData . inputs ?. numInit as string ) || null
621
- const topK = parseInt ( nodeData . inputs ?. topK as string ) || 4
621
+ const topK = parseInt ( nodeData . inputs ?. topK as string ) || 10
622
622
const searchThreshold = parseFloat ( nodeData . inputs ?. searchThreshold as string ) || null
623
623
const searchNumCluster = parseInt ( nodeData . inputs ?. searchNumCluster as string ) || null
624
624
const efSearch = parseInt ( nodeData . inputs ?. efSearch as string ) || null
You can’t perform that action at this time.
0 commit comments