forked from neurodock/NeuroDock
f50c04c828
- Renamed package from me.zacharias.chat to me.neurodock across all 8 modules - Updated Gradle group from me.zacharias.neurodock to me.neurodock - Updated README and other files to reflect new Gitea org URL (Chat_things → neurodock) Dev note: 95 files touched. The Great Refactor is complete, long may it rest.
38 lines
948 B
Java
38 lines
948 B
Java
package plugin;
|
|
|
|
//// This class is broken due to the current refactoring on the RPCP part of this project.
|
|
|
|
import me.neurodock.ollama.OllamaFunctionArgument;
|
|
import me.neurodock.ollama.OllamaFunctionTool;
|
|
import me.neurodock.ollama.OllamaPerameter;
|
|
import me.neurodock.ollama.OllamaToolResponse;
|
|
import me.zacharias.chat.plugin.annotation.OllamaTool;
|
|
import me.zacharias.chat.plugin.annotation.injectons.InjectPlugin;
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
@OllamaTool
|
|
public class Tool extends OllamaFunctionTool {
|
|
@InjectPlugin(classType = Test.class)
|
|
Test core;
|
|
|
|
@Override
|
|
public @NotNull String name() {
|
|
return "";
|
|
}
|
|
|
|
@Override
|
|
public String description() {
|
|
return "";
|
|
}
|
|
|
|
@Override
|
|
public @NotNull OllamaPerameter parameters() {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public @NotNull OllamaToolResponse function(OllamaFunctionArgument... args) {
|
|
return null;
|
|
}
|
|
}
|