Welcome to another project explanation blog. This was a hackathon project that I participated in, where my teammates (KlebJ037, Dubcfrito, Sadzhamo) ended up creating an application known as Money Mentor.
Money Mentor is an application that was designed to assist Gen Z in their retirement and make it a bit less mundane while doing so. Our approach makes it into a game with points based on spending habits.
This post is mostly intended to discuss the backend work I completed for this hackathon, including the essential components and concepts that make the solution workable, even though this project was more of a proof of concept. I am also proud to announce that we won third place in this competition.
My generation, Gen Z, has had a pretty massive challenge in this economy of trying to plan for retirement and savings for the future. A lot of the time, it’s not even something that is considered, and this poses an issue.
Although the more bog-standard methods may be difficult and oftentimes tracking items that we buy can be a hassle, this application, Money Mentor, tries to make it easier for users to understand their data and to reduce redundant spending to save money.
The backend of Money Mentor fetches financial data and generates a scorecard by passing this data into a pre-trained model and a scoring formula to create scorecards.
The three main components are:
To show the proof of concept, we use the dummy data that we retrieve from Plaid’s API to analyze and use for this project.
The code used to fetch the Plaid API is:
Please check out the github repo if you want to see the entire code. The above snippet is mainly to serve as an example of how data was requested from the API.
The next step is to analyze the transaction data and separate it into important and non-essential groups. This categorization is useful in determining financial scores.
This phase prompted me to hardcode the essential and non-essential categories rather than develop a more acceptable model for distinguishing essential from non-essential due to time constraints.
The last step was where the transactions were passed through a formula to create a score and then passed through GPT to create an explanation of the scorecard.
This post delves into the backend development of the Money Mentor project, a financial mentorship application built for the TIAA Hackathon. This initiative intends to gamify the retirement and savings planning process for Generation Z to solve the issues they confront. The backend uses the Plaid API for data retrieval and GPT for data summarizing.
Thank you for reading, and I look forward to further updates.