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

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

There is a newer version: 0.23.3
Show newest version
package io.quarkiverse.langchain4j.pinecone.runtime;

import com.fasterxml.jackson.annotation.JsonProperty;

import io.quarkus.runtime.annotations.RegisterForReflection;

@RegisterForReflection
public class CreateIndexPodSpec {

    private final String environment;

    @JsonProperty("pod_type")
    private final String podType;

    public CreateIndexPodSpec(String environment, String podType) {
        this.environment = environment;
        this.podType = podType;
    }

    public String getEnvironment() {
        return environment;
    }

    public String getPodType() {
        return podType;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy