This is an automated email from the ASF dual-hosted git repository.
aldettinger pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/main by this push:
new 78af34a8d8 langchain4j: fix documentation (#6877)
78af34a8d8 is described below
commit 78af34a8d88db52a1645dc40be7c75d1cc4a6b8e
Author: Alexandre Gallice <[email protected]>
AuthorDate: Thu Dec 19 10:24:41 2024 +0100
langchain4j: fix documentation (#6877)
---
docs/modules/ROOT/pages/reference/extensions/langchain4j.adoc | 6 +++---
extensions/langchain4j/runtime/src/main/doc/configuration.adoc | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/docs/modules/ROOT/pages/reference/extensions/langchain4j.adoc
b/docs/modules/ROOT/pages/reference/extensions/langchain4j.adoc
index 0287231bda..b16974fde9 100644
--- a/docs/modules/ROOT/pages/reference/extensions/langchain4j.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/langchain4j.adoc
@@ -83,10 +83,10 @@ public interface CustomAiService {
You can find more details about Camel Parameter Binding annotations in the
xref:manual::parameter-binding-annotations.adoc[manual].
-[id="extensions-langchain4j-configuration-resolving-ai-services-by-interface-name"]
-=== Resolving AI services by interface name
+[id="extensions-langchain4j-configuration-resolving-ai-services-by-interface"]
+=== Resolving AI services by interface
-With the `camel-quarkus-langchain4j` extension, the AI services are resolvable
by interface name when called from a `bean` statement.
+With the `camel-quarkus-langchain4j` extension, the AI services are resolvable
by interface when called from a `bean` statement.
For instance, let's define an AI service below:
diff --git a/extensions/langchain4j/runtime/src/main/doc/configuration.adoc
b/extensions/langchain4j/runtime/src/main/doc/configuration.adoc
index cf06882e5c..3259dfa646 100644
--- a/extensions/langchain4j/runtime/src/main/doc/configuration.adoc
+++ b/extensions/langchain4j/runtime/src/main/doc/configuration.adoc
@@ -17,9 +17,9 @@ public interface CustomAiService {
You can find more details about Camel Parameter Binding annotations in the
xref:manual::parameter-binding-annotations.adoc[manual].
-=== Resolving AI services by interface name
+=== Resolving AI services by interface
-With the `camel-quarkus-langchain4j` extension, the AI services are resolvable
by interface name when called from a `bean` statement.
+With the `camel-quarkus-langchain4j` extension, the AI services are resolvable
by interface when called from a `bean` statement.
For instance, let's define an AI service below:
@@ -42,4 +42,4 @@ public void configure() {
from("...")
.bean(MyAiService.class);
}
-```
\ No newline at end of file
+```