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

io.quarkiverse.langchain4j.infinispan.InfinispanEmbeddingStoreBuildTimeConfig Maven / Gradle / Ivy

There is a newer version: 0.18.0
Show newest version
package io.quarkiverse.langchain4j.infinispan;

import static io.quarkus.runtime.annotations.ConfigPhase.BUILD_TIME;

import java.util.Optional;

import io.quarkus.runtime.annotations.ConfigRoot;
import io.smallrye.config.ConfigMapping;

@ConfigRoot(phase = BUILD_TIME)
@ConfigMapping(prefix = "quarkus.langchain4j.infinispan")
public interface InfinispanEmbeddingStoreBuildTimeConfig {

    /**
     * The name of the Infinispan client to use. These clients are configured by means of the `infinispan-client` extension.
     * If unspecified, it will use the default Infinispan client.
     */
    Optional clientName();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy