Uses of Class
com.google.genkit.ai.IndexerResponse
Packages that use IndexerResponse
Package
Description
Chroma vector database integration for Genkit.
Firestore vector search retriever and indexer components.
Milvus vector database integration for Genkit.
MongoDB integration for Genkit.
Pinecone plugin for Genkit providing vector database integration.
PostgreSQL plugin for Genkit providing vector database integration using pgvector extension.
Qdrant vector database integration for Genkit.
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.chroma
Methods in com.google.genkit.plugins.chroma that return IndexerResponseModifier and TypeMethodDescriptionChromaVectorStore.index(ActionContext context, IndexerRequest request) Indexes documents into the collection, generating an embedding for each. -
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.milvus
Methods in com.google.genkit.plugins.milvus that return IndexerResponseModifier and TypeMethodDescriptionMilvusVectorStore.index(ActionContext context, IndexerRequest request) Indexes documents into the collection, generating an embedding for each. -
Uses of IndexerResponse in com.google.genkit.plugins.mongodb
Methods in com.google.genkit.plugins.mongodb that return IndexerResponseModifier and TypeMethodDescriptionMongoVectorStore.index(ActionContext context, IndexerRequest request) Indexes documents into the collection, generating an embedding for each. -
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.qdrant
Methods in com.google.genkit.plugins.qdrant that return IndexerResponseModifier and TypeMethodDescriptionQdrantVectorStore.index(ActionContext context, IndexerRequest request) Indexes documents into the collection, generating an embedding for each. -
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.