io.quarkiverse.langchain4j.runtime.tool.ToolClassCreateInfo Maven / Gradle / Ivy
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