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

io.quarkiverse.langchain4j.deployment.devui.AiServiceInfo Maven / Gradle / Ivy

The newest version!
package io.quarkiverse.langchain4j.deployment.devui;

import java.util.List;

public class AiServiceInfo {

    private String clazz;
    private List tools;

    public AiServiceInfo(String clazz, List tools) {
        this.clazz = clazz;
        this.tools = tools;
    }

    public List getTools() {
        return tools;
    }

    public String getClazz() {
        return clazz;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy