You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/modules/getting-started/pages/ask-akka-agent/the-agent.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ You already learned how to create an empty Akka project when you went through th
28
28
29
29
[NOTE]
30
30
====
31
-
This guide is written assuming you will follow it as a tutorial to walk through all of the components, building them on your own. If at any time you want to compare your solution with the official sample, check out the link:https://github.com/akka-samples/ask-akka-agent[Github Repository, window="new"].
31
+
This guide is written assuming you will follow it as a tutorial to walk through all of the components, building them on your own. If at any time you want to compare your solution with the official sample, check out the link:https://github.com/akka-samples/ask-akka-agent[GitHub Repository, window="new"].
Copy file name to clipboardExpand all lines: docs/src/modules/getting-started/pages/author-your-first-service.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ You can run this sample without an OpenAI API key, but it will be more fun if yo
30
30
[#clone_sample]
31
31
== Clone the sample project
32
32
33
-
. From a command line, clone the link:https://github.com/akka-samples/helloworld-agent[Github Repository, window="new"] in a convenient location:
33
+
. From a command line, clone the link:https://github.com/akka-samples/helloworld-agent[GitHub Repository, window="new"] in a convenient location:
Copy file name to clipboardExpand all lines: docs/src/modules/getting-started/pages/planner-agent/activity.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ You already learned how to create an empty Akka project when you went through th
25
25
26
26
[NOTE]
27
27
====
28
-
This guide is written assuming you will follow it as a tutorial to walk through all of the components, building them on your own. If at any time you want to compare your solution with the official sample, check out the link:https://github.com/akka-samples/multi-agent[Github Repository, window="new"].
28
+
This guide is written assuming you will follow it as a tutorial to walk through all of the components, building them on your own. If at any time you want to compare your solution with the official sample, check out the link:https://github.com/akka-samples/multi-agent[GitHub Repository, window="new"].
This sample illustrate the use of LLMs and prompts to summarize activities. It assigns tags to the medical discharge summaries, while also enabling human verification and comparative analysis. Interactions are from a workflow with an agent using the OpenAI API with configurable model choice.
65
65
66
66
[%hardbreaks]
67
67
**Concepts**: _Agent_, _Summarization_, _Workflow_, _Entity_, _OpenAI_, _Human in the loop_
This sample is a temperature monitoring system that collects, aggregates, and analyzes temperature data from IoT sensors. The system uses AI to generate insights about temperature trends and anomalies across different locations. Collects and aggregates temperature data using Key Value Entities. OpenAI is used for anomaly and trend detection.
This sample is designed to run every time there is a release from configured GitHub repositories. It interacts with Anthropic Claude from an agent and uses tools to retrieve detailed information from GitHub. Entities are used for storing release summaries. A timed action looks for new releases periodically and creates the summary using the LLM.
The real-estate customer service agent demonstrates how to combine Akka features with an LLM model. It illustrates an agentic workflow for customer service. It processes incoming real-estate inquiries, analyzes the content to extract details, provides follow-up when needed and saves the collected information for future reference.
89
89
90
90
[%hardbreaks]
91
91
**Concepts**: _Agent_, _Workflow_, _Analysis_, _Detail extraction_, _Human in the loop_, _Agent Memory_
This app represents a travel agency that searches for flights and accommodations. It's composed by an LLM (Anthropic) using Spring AI and AI tools to find flights, accommodations and sending mails.
This sample illustrates an AI agent that uses an LLM and multiple tools to analyze data from fitness trackers, medical records and other sensors. It integrates with Fitbit and MongoDB Atlas.
This sample illustrates the basics of building a shopping cart with entities, views, and other core Akka components. There is also a step-by-step guide that gradually adds features to a core cart.
@@ -114,44 +114,44 @@ This sample illustrates the basics of building a shopping cart with entities, vi
This sample illustrates the use of entities and query capabilities with a view. It shows a simple set of traditional queries and the standard create, update, and delete mutations through events.
This example illustrates a funds transfer workflow between two wallets, where the workflow orchestrates the interaction with an external service to perform the transfer.
This example illustrates a funds transfer workflow between two wallets. It also illustrates how to set up workflow _compensation_ in order to self-heal work when one or more steps in the workflow fail.
This example represents a complete, resilient, automatically scalable, event-sourced chess game. We will be adding a guided tour that will include adding an agent to act as a non-player "brain" that plays chess in real time against human players.
. Clone the full source code of the Shopping Cart (with View) sample from link:https://github.com/akka-samples/shopping-cart-with-view[Github].
20
+
. Clone the full source code of the Shopping Cart (with View) sample from link:https://github.com/akka-samples/shopping-cart-with-view[GitHub].
. Clone the full source code of the Shopping Cart sample from link:https://github.com/akka-samples/shopping-cart-quickstart[Github], or use the Akka CLI command below to download and unzip this quickstart project.
28
+
. Clone the full source code of the Shopping Cart sample from link:https://github.com/akka-samples/shopping-cart-quickstart[GitHub], or use the Akka CLI command below to download and unzip this quickstart project.
You find the full source code for this multi-agent sample in the link:https://github.com/akka-samples/multi-agent[akka-samples/multi-agent Github Repository].
668
+
You find the full source code for this multi-agent sample in the link:https://github.com/akka-samples/multi-agent[akka-samples/multi-agent GitHub Repository].
Copy file name to clipboardExpand all lines: docs/src/modules/java/pages/ai-coding-assistant.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -119,7 +119,7 @@ it should answer with something like
119
119
Even though the documentation includes comprehensive code snippets it can be good to include the full source code of one or a few samples. This makes it easier for the coding assistant to follow the same structure as the sample.
120
120
121
121
. Pick one or a few samples from xref:getting-started:samples.adoc[], which are relevant to what you are developing. If you are just getting started learning Akka you can pick the Shopping Cart sample.
122
-
. Clone the sample Github repository. Pull latest if you have already cloned the repository before.
122
+
. Clone the sample GitHub repository. Pull latest if you have already cloned the repository before.
123
123
. Copy the source code to a folder `akka-context/` in your development project, e.g. `akka-context/travel-agent/src`.
124
124
. Add `akka-context/` to your `.gitignore` file, if you use git.
Copy file name to clipboardExpand all lines: docs/src/modules/java/pages/event-sourced-entities.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ The steps necessary to implement an Event Sourced Entity include:
30
30
. Model the entity's state and its domain events.
31
31
. Implementing behavior in command and event handlers.
32
32
33
-
The following sections walk through these steps using a shopping cart service as an example (working sample can be downloaded from link:https://github.com/akka-samples/shopping-cart-quickstart[Github]).
33
+
The following sections walk through these steps using a shopping cart service as an example (working sample can be downloaded from link:https://github.com/akka-samples/shopping-cart-quickstart[GitHub]).
0 commit comments