Uses of Class
com.google.genkit.ai.IndexerResponse
Packages that use IndexerResponse
Package
Description
Firestore vector search retriever and indexer components.
Pinecone plugin for Genkit providing vector database integration.
PostgreSQL plugin for Genkit providing vector database integration using
pgvector extension.
Weaviate plugin for Genkit providing vector database integration for RAG
workflows.
-
Uses of IndexerResponse in com.google.genkit
Method parameters in com.google.genkit with type arguments of type IndexerResponseModifier and TypeMethodDescriptionGenkit.defineIndexer(String name, BiFunction<ActionContext, IndexerRequest, IndexerResponse> handler) Defines and registers an indexer. -
Uses of IndexerResponse in com.google.genkit.ai
Methods in com.google.genkit.ai that return IndexerResponseModifier and TypeMethodDescriptionIndexer.run(ActionContext ctx, IndexerRequest input) Indexer.run(ActionContext ctx, IndexerRequest input, Consumer<Void> streamCallback) Method parameters in com.google.genkit.ai with type arguments of type IndexerResponseModifier and TypeMethodDescriptionIndexer.Builder.handler(BiFunction<ActionContext, IndexerRequest, IndexerResponse> handler) Constructor parameters in com.google.genkit.ai with type arguments of type IndexerResponseModifierConstructorDescriptionIndexer(String name, BiFunction<ActionContext, IndexerRequest, IndexerResponse> handler) Creates a new Indexer. -
Uses of IndexerResponse in com.google.genkit.plugins.firebase.retriever
Methods in com.google.genkit.plugins.firebase.retriever that return IndexerResponseModifier and TypeMethodDescriptionFirestoreVectorStore.index(ActionContext ctx, IndexerRequest request) Indexes documents into Firestore with their embeddings. -
Uses of IndexerResponse in com.google.genkit.plugins.pinecone
Methods in com.google.genkit.plugins.pinecone that return IndexerResponseModifier and TypeMethodDescriptionPineconeVectorStore.index(ActionContext context, IndexerRequest request) Indexes documents into the vector store. -
Uses of IndexerResponse in com.google.genkit.plugins.postgresql
Methods in com.google.genkit.plugins.postgresql that return IndexerResponseModifier and TypeMethodDescriptionPostgresVectorStore.index(ActionContext context, IndexerRequest request) Indexes documents into the vector store. -
Uses of IndexerResponse in com.google.genkit.plugins.weaviate
Methods in com.google.genkit.plugins.weaviate that return IndexerResponseModifier and TypeMethodDescriptionWeaviateVectorStore.index(ActionContext ctx, IndexerRequest request) Indexes documents into Weaviate with their embeddings.