Replies: 2 comments 1 reply
-
🤖 Hi @Gianlucq! 👋 I'm Dosu, a friendly bot here to assist you with the LlamaIndex repository while we're waiting for a real human maintainer. I'm here to help you solve bugs, answer your questions, and guide you to become a contributor. How's your day going? Sure, I can help with that.
field = SimpleField(name=field_name, type=index_field_type, filterable=True)
index_fields.append(field) You can find this in the llama_index/vector_stores/cogsearch.py file.
SearchField(
name=self._field_mapping["embedding"],
type=SearchFieldDataType.Collection(SearchFieldDataType.Single),
hidden=False,
searchable=True,
filterable=False,
sortable=False,
facetable=False,
vector_search_dimensions=self.embedding_dimensionality,
vector_search_configuration="default",
) This field is used to store the embedding vector for each document in the index. The field is set to be searchable but not filterable, sortable, or facetable. The dimensionality of the embedding vector is specified by the I hope this answers your questions. If you have any more, feel free to ask! Best regards, SourcesThis response is meant to be useful and save you time. It is not meant to be a precise solution, but rather a starting point for your own research. Help me be more useful! Please leave a 👍 if this is helpful and 👎 if it is irrelevant. If you want to continue the conversation, start your reply with @dosu-bot. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Good evening here some questions relative to the use of llama-index with Azure AI Search (ex Azure Cognitive Search)
Using object CognitiveSearchVectorStore is possible to get also searchable fields? Or only filterable field? If yes, how?
Is possible also to have more than one "embedings" column? or just one?
Regards!
Beta Was this translation helpful? Give feedback.
All reactions