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

io.quarkiverse.langchain4j.ollama.runtime.config.ChatModelFixedRuntimeConfig Maven / Gradle / Ivy

There is a newer version: 0.21.0
Show newest version
package io.quarkiverse.langchain4j.ollama.runtime.config;

import io.quarkus.runtime.annotations.ConfigGroup;
import io.smallrye.config.WithDefault;

@ConfigGroup
public interface ChatModelFixedRuntimeConfig {

    /**
     * Model to use. According to Ollama
     * docs,
     * the default value is {@code llama3}
     */
    @WithDefault("llama3")
    String modelId();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy