Zineb Bendhiba created CAMEL-21594: -------------------------------------- Summary: Camel Langchain4j Tools Key: CAMEL-21594 URL: https://issues.apache.org/jira/browse/CAMEL-21594 Project: Camel Issue Type: Bug Components: Camel langchain4j Tools Affects Versions: 4.9.0, 4.8.2 Reporter: Zineb Bendhiba
There's a bug in Camel Langchain4j Tools. If the LLM doesn't require using one of the tools provided in the prompt, there's an error. {code:java} : org.apache.camel.RuntimeCamelException: There are no tools to be executed at org.apache.camel.component.langchain4j.tools.LangChain4jToolsProducer.chatWithLLMForTools(LangChain4jToolsProducer.java:148) at org.apache.camel.component.langchain4j.tools.LangChain4jToolsProducer.toolsChat(LangChain4jToolsProducer.java:98) at org.apache.camel.component.langchain4j.tools.LangChain4jToolsProducer.processMultipleMessages(LangChain4jToolsProducer.java:62) at org.apache.camel.component.langchain4j.tools.LangChain4jToolsProducer.process(LangChain4jToolsProducer.java:56) at org.apache.camel.support.AsyncProcessorConverterHelper$ProcessorToAsyncProcessorBridge.process(AsyncProcessorConverterHelper.java:65) at org.apache.camel.processor.SendProcessor.process(SendProcessor.java:208){code} It seems that the component expects the LLM to ask for a tool as a requirement. In RAG, we should send the list the tools to the LLM, but the LLM would evaluate and ask execution, only if that is relevant. If LLM doesn't ask a tool execution, the component should behave as simple Langchain4j chat component. -- This message was sent by Atlassian Jira (v8.20.10#820010)