When creating an index with integrated inference, is it possible to have more than one field be vectorized?
All I see in the docs is setting field_map to a single field. I have tried passing the below as a possibility, but it seems to only create the ability on the last field in field_map.
Hi, I am needing more than one field vectorized so that each field could possibly be queried separately.
Here is the full embed section of create_index_for_model that I am passing
embed={
“model”:“multilingual-e5-large”,
“field_map”:{
“text”: “chunk_text”,
“text”: “character”}
}