Skip to content

Commit 7f8be76

Browse files
Update _posts/2025-05-08-agentic-ai-with-quarkus-p3.adoc
Co-authored-by: Clement Escoffier <[email protected]>
1 parent 114a29f commit 7f8be76

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

_posts/2025-05-08-agentic-ai-with-quarkus-p3.adoc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ The resulting traces show the sequence of steps performed to fulfill the user re
3939
.Tracing routing workflow pattern execution
4040
image::routing-workflow-trace.png[align=center, alt="Tracing routing workflow pattern execution"]
4141
In this example, we use the same model to classify and generate the response. However, it is possible to use specialized models for the classification and each experts.
42-
However, Quarkus integration makes straightforward to also turn these LLM services into tools that can be invoked by other LLMs, simply annotating them with `@Tool` followed by a short description of the purpose of that tool, while preserving the possibility of also invoking the single expert directly as an independent LLM service.
42+
Now, let’s see how we can transform this workflow approach into a more agentic one.
43+
44+
Quarkus integration makes it straightforward to turn these AI “expert” services into _tools_ that another AI service can invoke. You only need to annotate the AI service methods with `@Tool` and configure the caller AI service with `@Toolbox`. This approach preserves the possibility of also invoking the single expert directly as an independent LLM service, and also using specialized models for each expert.
4345

4446
[source, java]
4547
----

0 commit comments

Comments
 (0)