Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

feat(tool): Add ToolExecutionEligibilityPredicate interface #2585

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Conversation

tzolov
Copy link
Contributor

@tzolov tzolov commented Mar 28, 2025

Introduce a new ToolExecutionEligibilityChecker interface to provide a more flexible way to determine when tool execution should be performed based on model responses. This abstraction replaces the hardcoded logic previously scattered across the codebase.

  • Adds a new ToolExecutionEligibilityChecker interface in spring-ai-core
  • Integrates the checker into OpenAiChatModel with appropriate defaults
  • Updates OpenAiChatAutoConfiguration to support the new interface
  • Provides a default implementation that maintains backward compatibility

* @param chatResponse The response from the chat model
* @return true if tool execution should be performed, false otherwise
*/
default boolean isToolExecutionRequired(ChatOptions promptOptions, ChatResponse chatResponse) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would suggest keeping only this method in the interface and make it a Predicate, returning just true/false.

The other two methods are already implemented elsewhere and the implementation should never change. And if customisations are needed, this method here would allow that, without having to change the other two.

@tzolov what do you think?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Following that train of thought, I would name this interface ToolExecutionEligibilityPredicate. The default implementation can simply consist of the following:

return ToolCallingChatOptions.isInternalToolExecutionEnabled(prompt.getOptions()) && response != null
				&& response.hasToolCalls()

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The "internalToolExecutionEnabled" is an inner state of ToolCallingChatOptions. It shouldn't be changed.

Similarly, having toolCalls is an inner state of ChatResponse. It shouldn't be changed either.

What can be changed is if and when to use those two pieces of information, possibly in combination with additional factors. And a ToolExecutionEligibilityPredicate interface with just one method should be sufficient.

@tzolov tzolov force-pushed the toolExecutionEligibilityChecker branch from 72a271c to a66a673 Compare April 4, 2025 05:31
@tzolov
Copy link
Contributor Author

tzolov commented Apr 4, 2025

Thanks for the suggestions @ThomasVitale . I've adjusted the PR.
Will add support for the other (supported) models as well

@tzolov tzolov changed the title feat(tool): Add ToolExecutionEligibilityChecker interface feat(tool): Add ToolExecutionEligibilityPredicate interface Apr 4, 2025
@tzolov tzolov marked this pull request as ready for review April 4, 2025 12:41
@markpollack markpollack added this to the 1.0.0-M7 milestone Apr 4, 2025
tzolov added 6 commits April 4, 2025 23:54
Introduce a new ToolExecutionEligibilityChecker interface to provide a more flexible way to determine
when tool execution should be performed based on model responses. This abstraction replaces the
hardcoded logic previously scattered across the codebase.

- Adds a new ToolExecutionEligibilityChecker interface in spring-ai-core
- Integrates the checker into OpenAiChatModel with appropriate defaults
- Updates OpenAiChatAutoConfiguration to support the new interface
- Provides a default implementation that maintains backward compatibility

Signed-off-by: Christian Tzolov <christian.tzolov@broadcom.com>
…ligibilityPredicate

- Replacing ToolExecutionEligibilityChecker with ToolExecutionEligibilityPredicate
- Changing from Function<ChatResponse, Boolean> to BiPredicate<ChatOptions, ChatResponse>
- Adding a DefaultToolExecutionEligibilityPredicate implementation
- Updating AnthropicChatModel and OpenAiChatModel to use the new predicate
- Updating auto-configurations to inject the new predicate
- Adding comprehensive tests for the new predicate implementation

The new approach provides a cleaner and more consistent way to determine when tool execution should be performed based on both prompt options and chat responses.

Signed-off-by: Christian Tzolov <christian.tzolov@broadcom.com>
Signed-off-by: Christian Tzolov <christian.tzolov@broadcom.com>
Signed-off-by: Christian Tzolov <christian.tzolov@broadcom.com>
Signed-off-by: Christian Tzolov <christian.tzolov@broadcom.com>
Signed-off-by: Christian Tzolov <christian.tzolov@broadcom.com>
@tzolov tzolov force-pushed the toolExecutionEligibilityChecker branch from f7f0387 to 9999675 Compare April 4, 2025 21:55
# for free to join this conversation on GitHub. Already have an account? # to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants