All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkiverse.langchain4j.pinecone.runtime.UpsertRequest Maven / Gradle / Ivy

package io.quarkiverse.langchain4j.pinecone.runtime;

import java.util.List;

import io.quarkus.runtime.annotations.RegisterForReflection;

/**
 * Represents an upsert operation against Pinecone.
 * See the API documentation.
 */
@RegisterForReflection
public class UpsertRequest {

    private final List vectors;

    private final String namespace;

    public UpsertRequest(List vectors, String namespace) {
        this.vectors = vectors;
        this.namespace = namespace;
    }

    public List getVectors() {
        return vectors;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy