Vertex AI Vector Search Question
I'm hitting a snag trying to get the vertex-ai-search indexer working with Firestore using Genkit version 1.0.4.
I'm getting the error:* Error: Unable to utilize the provided indexer. *
I'm following the docs here: https://firebase.google.com/docs/genkit/plugins/vertex-ai#configuration
I have two plugins: vertexAI and vertexAIVectorSearch.
For clarification it's this call that causes the error.
await ai.index({
indexer: vertexAiIndexerRef({
indexId: VECTOR_SEARCH_INDEX_ID,
}),
documents,
});
VECTOR_SEARCH_INDEX_ID is correctly set. Any ideas what might be causing this or how to debug it? Any help would be greatly appreciated!