Ollama4j
A Java library (wrapper/binding) for Ollama server.
Loading...
Searching...
No Matches
ToolProperty.java
Go to the documentation of this file.
1package io.github.ollama4j.tools.annotations;
2
3import java.lang.annotation.ElementType;
4import java.lang.annotation.Retention;
5import java.lang.annotation.RetentionPolicy;
6import java.lang.annotation.Target;
7
12@Retention(RetentionPolicy.RUNTIME)
13@Target(ElementType.PARAMETER)
14public @interface ToolProperty {
15
20 String name();
21
26 String desc();
27
31 boolean required() default true;
32}