input_type
as either query
or passage
. When creating an index with integrated embedding, input_type
defaults to query
for reads and passage
for writes. Optionally, you can:- Return the string tokens using
"return_tokens": true
. - Raise the max input tokens limit from the default of
512
to the maximum of2048
using"max_tokens_per_sequence": 2048
. - Return an error when the input exceeds
max_tokens_per_sequence
using"truncate": "NONE"
.