Skip to content

Commit

Permalink
fix(ai): Make methods in McpToolCallbacks public
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasVitale committed Jan 3, 2025
1 parent 628cab2 commit 800cac5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
*/
public final class McpToolCallbacks {

static FunctionCallback[] from(McpSyncClient source) {
public static FunctionCallback[] from(McpSyncClient source) {
return McpToolCallbackProvider.builder().mcpClients(source).build().getToolCallbacks();
}

static FunctionCallback[] from(McpAsyncClient source) {
public static FunctionCallback[] from(McpAsyncClient source) {
return McpToolCallbackProvider.builder().mcpClients(source).build().getToolCallbacks();
}

Expand Down
11 changes: 0 additions & 11 deletions project-catalog.yml

This file was deleted.

0 comments on commit 800cac5

Please sign in to comment.