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

io.quarkiverse.langchain4j.ollama.runtime.config.EmbeddingModelFixedRuntimeConfig 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 EmbeddingModelFixedRuntimeConfig {

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy