This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch camel-4.8.x
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-4.8.x by this push:
new 1372c955f8b CAMEL-21502: fixed incorrect reference to the chat
component (#16426)
1372c955f8b is described below
commit 1372c955f8bd3f063b77b2638fb5e01f0e9a4813
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Tue Dec 3 13:32:05 2024 +0100
CAMEL-21502: fixed incorrect reference to the chat component (#16426)
---
.../src/main/docs/langchain4j-tools-component.adoc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/components/camel-ai/camel-langchain4j-tools/src/main/docs/langchain4j-tools-component.adoc
b/components/camel-ai/camel-langchain4j-tools/src/main/docs/langchain4j-tools-component.adoc
index fa24ec5d308..c843f2d14fb 100644
---
a/components/camel-ai/camel-langchain4j-tools/src/main/docs/langchain4j-tools-component.adoc
+++
b/components/camel-ai/camel-langchain4j-tools/src/main/docs/langchain4j-tools-component.adoc
@@ -120,7 +120,7 @@ in the consumer route `${header.userId}` can be used.
from("direct:test")
.to("langchain4j-tools:test1?tags=users");
-from("langchain4j-chat:test1?tags=users&description=Query user database by
user ID¶meter.userId=integer")
+from("langchain4j-tools:test1?tags=users&description=Query user database by
user ID¶meter.userId=integer")
.to("sql:SELECT name FROM users WHERE id = :#userId");
----