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

io.quarkiverse.langchain4j.watsonx.deployment.LangChain4jWatsonBuildConfig Maven / Gradle / Ivy

There is a newer version: 0.23.3
Show newest version
package io.quarkiverse.langchain4j.watsonx.deployment;

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

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

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

    /**
     * Chat model related settings.
     */
    ChatModelBuildConfig chatModel();

    /**
     * Embedding model related settings.
     */
    EmbeddingModelBuildConfig embeddingModel();

    /**
     * Scoring model related settings.
     */
    ScoringModelBuildConfig scoringModel();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy