Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update index.md #66

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions docs/docs/tutorials/Fino/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@ sidebar_position: 1

# Personal Finance Assistant

For this tutorial, we'll build a personal finance assistant that helps the user manage their finances.
In this tutorial, you'll learn how to build a personal finance assistant that helps you manage your finances.

<!-- TODO: Add a gif or link for the live app -->

## Goals
- User should be able to chat with the assistant and ask questions about their personal finance history.
- Answers should be well designed and interactive rather than overloading the user with a lot of text.
- User should be able to create and manage multiple chat threads.
- You should be able to chat with the assistant and ask questions about your personal finance history.
- Your answers should be well-designed and interactive, rather than overloading you with much text.
- You should be able to create and manage multiple chat threads.

## Setup

Follow the [Getting Started](/docs/quickstart/nextjs) guide to set up your project.

## Next Steps
- Add a system prompt to the assistant that will help it answer questions about the user's personal finance history.
- Add a SQL execution tool to the assistant that will allow it to analyze the user's personal finance history.
- Add a template to the assistant that will allow it to render the user's personal finance history in a structured format.
- Add a system prompt to your assistant to answer questions about your personal finance history.
- Add a SQL execution tool to your assistant to analyze your personal finance history.
- Add a template to your assistant to render your personal finance history in a structured format.
- Render the template in the frontend based on the parameters returned by the LLM.