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

io.quarkiverse.langchain4j.runtime.config.GuardrailsConfig Maven / Gradle / Ivy

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

import io.smallrye.config.WithDefault;

public interface GuardrailsConfig {

    int MAX_RETRIES_DEFAULT = 3;

    /**
     * Configures the maximum number of retries for the guardrail.
     * Sets it to 0 to disable retries.
     */
    @WithDefault("" + MAX_RETRIES_DEFAULT)
    int maxRetries();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy