This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-website.git
The following commit(s) were added to refs/heads/main by this push:
new 41aa2267 Fix langchain4j-chat route direction and aws2-s3 component
name
41aa2267 is described below
commit 41aa2267a40dd53f6bcb074ca412e1f5b3c820eb
Author: Claus Ibsen <[email protected]>
AuthorDate: Fri Jun 12 15:03:04 2026 +0200
Fix langchain4j-chat route direction and aws2-s3 component name
---
content/blog/2026/06/camel-dna-19-years/index.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/content/blog/2026/06/camel-dna-19-years/index.md
b/content/blog/2026/06/camel-dna-19-years/index.md
index 4fa2df75..f9bd406f 100644
--- a/content/blog/2026/06/camel-dna-19-years/index.md
+++ b/content/blog/2026/06/camel-dna-19-years/index.md
@@ -152,7 +152,7 @@ Camel kept the same `from().to()` DNA but extended the
component catalog massive
from("jms:orders").to("file:processed");
// 2015 pattern — same DNA
-from("kafka:orders").to("aws-s3:processed-bucket");
+from("kafka:orders").to("aws2-s3:processed-bucket");
```
Spring Boot auto-configuration meant Camel could start in seconds instead of
minutes inside an app server. But `RouteBuilder.configure()` was unchanged.
@@ -215,10 +215,10 @@ Today, an AI agent writes:
```yaml
- route:
from:
- uri: langchain4j-chat:myModel
+ uri: kafka:ai-requests
steps:
- to:
- uri: kafka:ai-responses
+ uri: langchain4j-chat:myModel
```
Different era. Same DNA.