failOnError
Fail on Error
|
Flag to indicate if this stage should throw an exception if an error occurs.
type: boolean
default value: 'false '
|
milvusNumResults
Number of Results
required
|
Number of results to request from Milvus
type: integer
default value: '10 '
|
milvusResultsContextKey
Milvus Results Context Key
required
|
Name of the context key that will be used to store results from Milvus.
type: string
default value: 'milvus_results '
minLength: 1
|
milvusSearchParams
Search Parameters
|
Parameters that should be used to search in Milvus. Specific to the chosen IndexType. For example it can be nprobe=128 for IVF indexes or ef=400 for HNSW index.
type: array of object
object attributes: {
param
: {
display name: Milvus Search Param
type: string
description : The name of the Milvus search param like nprobe for IVF indexes or ef for HNSW
}
value
: {
display name: Value
type: integer
description : Search param value. For example it can be 128 for nprobe or 400 for ef.
}
}
|
milvusVectorsCollection
Milvus vectors collection to search
required
|
Name of the vectors collection in Milvus that should be used to search for similar vectors.
type: string
minLength: 1
|
modelId
Model ID
required
|
ID of Model used to encode the vector
type: string
|
modelOutputVector
Encoder Output Vector
required
|
The name of the model output vector that stores the encoded data.
type: string
default value: 'vector '
|