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

io.quarkiverse.langchain4j.runtime.tool.ToolClassCreateInfo Maven / Gradle / Ivy

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

import java.util.Map;

import io.quarkus.runtime.annotations.RecordableConstructor;

public class ToolClassCreateInfo {

    // the key is a methodId generated at build time
    private final Map methodMap;

    @RecordableConstructor
    public ToolClassCreateInfo(Map methodMap) {
        this.methodMap = methodMap;
    }

    public Map getMethodMap() {
        return methodMap;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy