Interface DomainToolPredicate
-
- All Implemented Interfaces:
-
java.util.function.BiPredicate
@FunctionalInterface() public interface DomainToolPredicate<T extends Object> implements BiPredicate<T, AgentProcess>
Predicate for filtering domain tool candidates.
This functional interface allows you to control whether a domain object should contribute its @LlmTool methods based on the object and current agent process.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classDomainToolPredicate.Companion
-
Method Summary
Modifier and Type Method Description abstract Booleantest(T artifact, AgentProcess agentProcess)-
-
Method Detail
-
test
abstract Boolean test(T artifact, AgentProcess agentProcess)
-
-
-
-