This is an automated email from the ASF dual-hosted git repository. aldettinger pushed a commit to branch data-extraction-example in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git
commit 2bc2294d5c8703bdd4dc05de165cbe97dc636563 Author: aldettinger <aldettin...@gmail.com> AuthorDate: Fri Jul 26 10:55:04 2024 +0200 update comment --- .../src/main/java/org/acme/extraction/CustomPojoExtractionService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data-extract-langchain4j/src/main/java/org/acme/extraction/CustomPojoExtractionService.java b/data-extract-langchain4j/src/main/java/org/acme/extraction/CustomPojoExtractionService.java index e3916aa..a1eff0b 100644 --- a/data-extract-langchain4j/src/main/java/org/acme/extraction/CustomPojoExtractionService.java +++ b/data-extract-langchain4j/src/main/java/org/acme/extraction/CustomPojoExtractionService.java @@ -28,7 +28,7 @@ public interface CustomPojoExtractionService { @UserMessage(CUSTOM_POJO_EXTRACT_PROMPT) @Handler // TODO: It should be possible to remove @V as this is working in data-experiments-camel-quarkus - // The issue is still there with q-platform 3.12.0, 3.12.1, 3.12.2, 3.12.3, 3.13.0.CR1 and maven.compiler.target/source = 21 + // The issue is still there with q-platform 3.12.0/3, 3.13.0.CR1 and maven.compiler.target/source = 21 CustomPojo extractFromText(@V("text") String text); //CustomPojo extractFromText(String text); }