Skip to content

Commit f7f0387

Browse files
committed
add ToolExecutionEligibilityPredicate docs
Signed-off-by: Christian Tzolov <christian.tzolov@broadcom.com>
1 parent d3ef78e commit f7f0387

File tree

1 file changed

+16
-1
lines changed
  • spring-ai-docs/src/main/antora/modules/ROOT/pages/api

1 file changed

+16
-1
lines changed

spring-ai-docs/src/main/antora/modules/ROOT/pages/api/tools.adoc

+16-1
Original file line numberDiff line numberDiff line change
@@ -1090,7 +1090,22 @@ WARNING: Currently, the internal messages exchanged with the model regarding the
10901090

10911091
=== User-Controlled Tool Execution
10921092

1093-
There are cases where you'd rather control the tool execution lifecycle yourself. You can do so by setting the `internalToolExecutionEnabled` attribute of `ToolCallingChatOptions` to `false`. When you invoke a `ChatModel` with this option, the tool execution will be delegated to the caller, giving you full control over the tool execution lifecycle. It's your responsibility checking for tool calls in the `ChatResponse` and executing them using the `ToolCallingManager`.
1093+
There are cases where you'd rather control the tool execution lifecycle yourself. You can do so by setting the `internalToolExecutionEnabled` attribute of `ToolCallingChatOptions` to `false`.
1094+
Alternatevly you can implement your `ToolExecutionEligibilityPredicate` predicate to control the tool execution eligibility.
1095+
The default predicate implemementation looks like this:
1096+
[source,java]
1097+
----
1098+
public class DefaultToolExecutionEligibilityPredicate implements ToolExecutionEligibilityPredicate {
1099+
1100+
@Override
1101+
public boolean test(ChatOptions promptOptions, ChatResponse chatResponse) {
1102+
return ToolCallingChatOptions.isInternalToolExecutionEnabled(promptOptions) && chatResponse != null
1103+
&& chatResponse.hasToolCalls();
1104+
}
1105+
}
1106+
----
1107+
1108+
When you invoke a `ChatModel` with this option, the tool execution will be delegated to the caller, giving you full control over the tool execution lifecycle. It's your responsibility checking for tool calls in the `ChatResponse` and executing them using the `ToolCallingManager`.
10941109

10951110
The following example demonstrates a minimal implementation of the user-controlled tool execution approach:
10961111

0 commit comments

Comments
 (0)