Agentic AI is a major trend in the evolution of LLMs. Agents enable AI applications to perform more autonomous and context-aware tasks, reducing manual effort.
In this demo, we use SambaNova’s very own SambaCloud and the low-code framework n8n to help beginners easily build a simple agentic application for household budgeting. You’ll learn the basic steps to develop an agentic AI app and gain an intuitive understanding of its core ideas.
Our platform offers ultra-fast inference.
For example, the latest Llama 4 model runs at 800 tokens per second on SambaCloud. That’s about 10x faster than conventional GPU-based inference. This speed becomes especially critical in agentic AI applications, such as with deep research agents.
Compared to traditional chatbots or RAG systems, agentic AI apps invoke LLMs far more frequently during execution, as shown in the figure:
Instead of calling just one or two models like a chatbot, an agentic app may call 5-10 different models as part of its reasoning process.
In addition, the number of tokens processed per task increases dramatically, from around 1,000 tokens in a simple chat to 50,000-100,000 tokens in agentic workflows. Naturally, this results in much heavier compute loads and longer processing times if the infrastructure can’t keep up.
By leveraging SambaNova’s ultra-fast inference in SambaCloud, you can build practical and high-UX agentic apps even when the LLM is invoked intensively throughout the workflow.
We chose household budgeting because it’s a task familiar to everyone, and it clearly shows how agentic AI can reduce manual cognitive and clerical workload.
The task can be broken down into three main steps:
The table below summarizes how the roles of these three steps have shifted with the progression of AI technology.
|
Stage |
Tech Milestone |
(1) Reading Receipt |
(2) Structuring Data |
(3) Recording Data |
|
I |
Fully-Manual |
Human |
Human |
Human |
|
II |
LLM-Assisted |
Human |
AI |
Human |
|
III |
VLM-Assisted |
AI |
AI |
Human |
|
IV |
Fully-Agentic |
AI |
AI |
AI |
One thing to highlight is that automation of actions has been around for quite some time. Tools like RPA have enabled parts of workflows to be automated. However, with conventional RPA, every step had to be manually predefined.
What’s different now is that with agentic AI, the entire workflow, from thinking to acting, can be handled flexibly by AI itself, without the need for rigid, manual definitions.
In this demo, we chose the low-code platform n8n for three main reasons:
n8n allows you to visually design workflows by connecting nodes, with each node representing a step in the process. n8n also has built-in AI agent nodes, which are specifically designed for agentic AI applications. These nodes simplify managing actions, memory, and multi-turn interactions without the need to manually handle complex logic.
In addition, SambaCloud provides an OpenAI-compatible API, so you can connect directly SambaNova APIs to n8n without any special customization.
This flow represents an agentic household budgeting app:
All of these steps are coordinated flexibly, through prompt-driven interactions, without needing to hard-code every path manually.
With n8n, once you create a chat workflow, you can open a chat application like this directly from your browser:
First, let’s enter the receipt information into the chat. You can casually describe the receipt in natural language; no strict format or keywords are needed:
The agent responded and noticed that the amount was missing. It flexibly asked for the missing detail. This highlights the flexible, context-aware interaction that is characteristic of agentic AI.
Let’s go ahead and provide the missing information:
The agent processed the input and has structured the information neatly into a formatted entry. It now asks for confirmation.
After confirming, the agent also logs the entry.
As you can see below, the receipt information entered (purchase date, item, amount, store, and category) has been accurately logged into the correct columns of the spreadsheet:
This highlights how an agentic AI app delivers flexible context-aware interaction through natural language. It’s quite convenient, isn’t it?
This demo was intentionally kept simple to focus on the basics. But it can easily be extended to support more complex, real-world workflows. For example, we could add voice input, allowing users to verbally input receipt information.
We could also implement spending analysis via chat, helping users better understand their financial patterns. Or, we could integrate the app with financial service APIs or credit card data for even broader automation.
And of course, there are many more possibilities beyond these. What kind of extensions would you build?
We hope this demo has sparked your interest in building agentic AI applications.
If you’re interested, feel free to visit cloud.sambanova.ai and sign up for SambaCloud. Signing up is easy—if you have a Google account, you can get started instantly.
We would love to see you create your own agentic AI applications. We’re excited to see what you’ll build.