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

io.quarkiverse.langchain4j.infinispan.runtime.InfinispanSchema Maven / Gradle / Ivy

The newest version!
package io.quarkiverse.langchain4j.infinispan.runtime;

public class InfinispanSchema {
    private final String cacheName;
    private final Long dimension;
    private final Integer distance;

    public InfinispanSchema(String cacheName,
            Long dimension, Integer distance) {
        this.cacheName = cacheName;
        this.dimension = dimension;
        this.distance = distance;
    }

    public String getCacheName() {
        return cacheName;
    }

    public Long getDimension() {
        return dimension;
    }

    public Integer getDistance() {
        return distance;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy