Support a custom ChatJsonRPCService::executeWithTools method implementation #1603
Replies: 2 comments
-
Another custom implementation that I wish to use is: ChatResponse response = model
.chat(ChatRequest.builder()
.messages(memory.messages())
.toolSpecifications(toolSpecifications)
......
build());
and with the code provided by the |
Beta Was this translation helpful? Give feedback.
-
I don't quite understand why you would need to override something that is used purely for quick experiments during development. And I don't think Quarkus even generally allows applications to plug in their custom code into the Dev UI, which is where As for overriding |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
The current implementation is the following:
I would like to change the implementation for my needs. As an example, my current implementation can determine the appropriate tool from a message using a deterministic, non-AI approach.
If possible, I wish to provide my custom code at the following..
@McpToolCode
is just a suggestion.Beta Was this translation helpful? Give feedback.
All reactions