This is an automated email from the ASF dual-hosted git repository.

Croway pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 93c97c9dc087 CAMEL-24543: camel-langchain4j-embeddingstore - correct 
the endpoint @UriEndpoint syntax scheme
93c97c9dc087 is described below

commit 93c97c9dc087e3707a757c2d29be0c464a82b78f
Author: Andrea Cosentino <[email protected]>
AuthorDate: Tue Sep 1 11:20:49 2026 +0200

    CAMEL-24543: camel-langchain4j-embeddingstore - correct the endpoint 
@UriEndpoint syntax scheme
    
    The @UriEndpoint annotation declared syntax = 
"langchain4j-embeddings:embeddingStoreId",
    using the wrong scheme (langchain4j-embeddings) instead of the component's 
own
    scheme, langchain4j-embeddingstore. The generated catalog syntax was 
already correct
    because it is derived from the scheme, so this only corrects the misleading 
source
    annotation - there is no change to the generated metadata or runtime 
behaviour.
    
    Co-Authored-By: Claude Opus 4.8 <[email protected]>
    Signed-off-by: Andrea Cosentino <[email protected]>
---
 .../langchain4j/embeddingstore/LangChain4jEmbeddingStoreEndpoint.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/components/camel-ai/camel-langchain4j-embeddingstore/src/main/java/org/apache/camel/component/langchain4j/embeddingstore/LangChain4jEmbeddingStoreEndpoint.java
 
b/components/camel-ai/camel-langchain4j-embeddingstore/src/main/java/org/apache/camel/component/langchain4j/embeddingstore/LangChain4jEmbeddingStoreEndpoint.java
index 0cad96e6cace..a983d1d32b46 100644
--- 
a/components/camel-ai/camel-langchain4j-embeddingstore/src/main/java/org/apache/camel/component/langchain4j/embeddingstore/LangChain4jEmbeddingStoreEndpoint.java
+++ 
b/components/camel-ai/camel-langchain4j-embeddingstore/src/main/java/org/apache/camel/component/langchain4j/embeddingstore/LangChain4jEmbeddingStoreEndpoint.java
@@ -34,7 +34,7 @@ import org.apache.camel.support.DefaultEndpoint;
              firstVersion = "4.14.0",
              scheme = LangChain4jEmbeddingStore.SCHEME,
              title = "LangChain4j Embedding Store",
-             syntax = "langchain4j-embeddings:embeddingStoreId",
+             syntax = "langchain4j-embeddingstore:embeddingStoreId",
              producerOnly = true,
              category = {
                      Category.DATABASE,

Reply via email to