You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -173,11 +173,16 @@ public class {{classname}}LLMToolkit implements Toolkit {
173
173
}
174
174
}
175
175
176
-
public static class LLMToolFactory_{{operationId}} implements ToolFactory<LLMTool_{{operationId}},{{classname}}ToolConfiguration> {
176
+
public static class LLMToolFactory_{{operationId}} implements ConfigurableToolFactory<Request_{{operationId}},Response_{{operationId}},LLMTool_{{operationId}},{{classname}}ToolConfiguration> {
177
177
@Override
178
178
public LLMTool_{{operationId}} create({{classname}}ToolConfiguration config) {
Copy file name to clipboardExpand all lines: code-generator/simple/src/main/kotlin/com/javaaidev/easyllmtools/codegenerator/simple/SimpleCodeGenerator.kt
Copy file name to clipboardExpand all lines: code-generator/simple/src/main/kotlin/com/javaaidev/easyllmtools/codegenerator/simple/SimpleCodeGeneratorCommand.kt
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,14 +10,22 @@ class SimpleCodeGeneratorCommand : Callable<Int> {
10
10
@CommandLine.Mixin
11
11
lateinitvar options:ReusableOptions
12
12
13
+
@CommandLine.Option(
14
+
names = ["--overwrite-tool-implementation"],
15
+
defaultValue ="false",
16
+
description = ["Should tool implementation be overwritten"]
0 commit comments