Ollama4j
A Java library (wrapper/binding) for Ollama server.
Loading...
Searching...
No Matches
ToolSpec.java
Go to the documentation of this file.
1package io.github.ollama4j.tools.annotations;
2
3import io.github.ollama4j.OllamaAPI;
4
5import java.lang.annotation.ElementType;
6import java.lang.annotation.Retention;
7import java.lang.annotation.RetentionPolicy;
8import java.lang.annotation.Target;
9
14@Target(ElementType.METHOD)
15@Retention(RetentionPolicy.RUNTIME)
16public @interface ToolSpec {
17
21 String name() default "";
22
27 String desc();
28}