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

io.quarkiverse.langchain4j.ToolBox Maven / Gradle / Ivy

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

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

/**
 * When used on a method of an AiService annotated with {@link RegisterAiService}, the method will the tool classes provided by
 * {@code value}
 * instead of the ones configured for the entire AiService (via {@link RegisterAiService#tools()})
 */
@Retention(RUNTIME)
@Target({ METHOD })
public @interface ToolBox {

    /**
     * Tool classes to use. All tools are expected to be CDI beans.
     */
    Class[] value() default {};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy