Skip to content

Commit ac95e59

Browse files
authored
Should use llama 3.1 (#59)
1 parent 87331aa commit ac95e59

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

content/modules/ROOT/pages/module-private-docs.adoc

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ with:
376376
[source,properties,subs="+attributes,macros+"]
377377
----
378378
# quarkus.langchain4j.openai.parasol-chat.chat-model.stop=DONE,done,stop,STOP
379-
quarkus.langchain4j.openai.parasol-chat.chat-model.model-name=llama3.2
379+
quarkus.langchain4j.openai.parasol-chat.chat-model.model-name=llama3.1
380380
quarkus.langchain4j.openai.parasol-chat.base-url=http://parasol-tools.aiworkshop.svc.cluster.local/v1
381381
----
382382

@@ -408,6 +408,8 @@ image::private-docs/quarkus-dev-ui.png[Quarkus Dev UI]
408408

409409
Find the "Mailpit" section and click on the https://{user}-parasol-insurance-quarkus-devui.{openshift_cluster_ingress_domain}/q/mailpit/[link^] next to "Mailpit UI" and you will see a new email that was sent thanks to our newly added functionality!
410410

411+
NOTE: The mailpit section might not be exactly in the same location as in the screenshot above.
412+
411413
image::private-docs/mailpit.png[Mailpit UI]
412414

413415
Click on the email to open it
@@ -468,14 +470,14 @@ image::private-docs/jaeger-trace-details.png[Jaeger trace details]
468470
. The entrypoint to the chat interface (`org.parasol.resources.ClaimWebsocketChatBot` class, `onMessage` method).
469471
. Entrypoint into the `ClaimService` AI service's `chat` method.
470472
. REST HTTP call to the embedding model to retrieve appropriate embeddings based on the chat query.
471-
. Call to the `llama3.2` model.
473+
. Call to the `llama3.1` model.
472474
. REST HTTP call to the model server.
473475
. Callback from the model to invoke the `updateClaimStatus` tool.
474476
. Call into our `NotificationService.updateClaimStatus` method.
475477
. Get a connection to the database.
476478
. **Select** the `Claim` record from the database to update.
477479
. **Update** the `Claim` record from the database and set the claim's status to **denied**.
478-
. Send the result of the tool invocation back to the `llama3.2` model.
480+
. Send the result of the tool invocation back to the `llama3.1` model.
479481
. REST HTTP call to the model server including the result from the tool invocation.
480482

481483
You can click on any span to show more contextual information about the span:

0 commit comments

Comments
 (0)