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

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

package io.quarkiverse.langchain4j.pinecone.runtime;

import java.util.List;

import com.fasterxml.jackson.annotation.JsonCreator;

import io.quarkus.runtime.annotations.RegisterForReflection;

@RegisterForReflection
public class ListIndexesResponse {

    private final List indexes;

    @JsonCreator
    public ListIndexesResponse(List indexes) {
        this.indexes = indexes;
    }

    public List getIndexes() {
        return indexes;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy