Exploring the possibilities of GPT4 to help customers manage their budgets
Company ABN AMRO | 2023 Services Innovative concept development
Creating a payment request based on recent expenses
During a 3-day hackathon, we explored the cutting-edge possibilities of GPT-4. Our goal was to a create budgeting assistant that provides valuable insights into customers' spending habits. We created a dummy data set of three months of transactions for GPT to query. While a quick user test and brainstorm session with domain expert helped to understand opportunities, we learned that we really have to take baby steps and to keep the prompts simple.
Objective
Explore the customer value of using GPT4 to help customer control their spending behaviour
Ideation
We generate ideas based on the input of a few domain experts and five customer interviews.
“How much did I spend on groceries? How much of that was at the Albert Heijn?”
"How much did I spend per week in April on subcategory groceries?”
“How much did I spend during my holiday in Portugal?”
"I've a yearly subscription for Dropbox, in which category would this fit?
"How much did I spend at market 33 on wednesdays during the lunch?”
# "I've a yearly subscription for Dropbox, in which category would it belong to?",
“I would like to spend a maximum of €1000 euro during my holiday the coming week. Could you help me keep track of it?"
Example scenario
User prompt
How much did I spend during my holiday in Portugal?
Bot answer
I spent 305.66 EUR during my holiday in Portugal.
GPT Thought process
Thought: To answer this question, I need to filter the dataframe to only include rows where the 'Country' column is equal to 'Portugal'. Then, I need to sum the 'EUR' column of the filtered dataframe to get the total amount spent.
Action: python_repl_ast
Action Input: df[df['Country'] == 'Portugal']['EUR'].sum()
Observation: -305.66
Thought:The total amount spent in Portugal is -305.66 EUR. However, since spending is usually represented as a positive number, I should take the absolute value of this number.
Action: python_repl_ast
Action Input: abs(df[df['Country'] == 'Portugal']['EUR'].sum())
Observation: 305.66
Thought: I now know the final answer
Final Answer: I spent 305.66 EUR during my holiday in Portugal.
💡 Following the thought process was an eye-opener for me, this also helped to improve the outcomes as we could improve the prompts and the data set.
User flow
I designed various flows in response to the outcomes from GPT, which we considered the most beneficial for the customers situation.
Conversational input enables the customer to reach functionality which is located deeper in the ABN AMRO app.
The budget assistant make it possible to easily summarise multiple transactions.
The make the insight actionable, the assistant can call the Tikkie API to create a payment request.
Learnings
A lovely project to get hands-on experience with GPT4.
❤️ Customer value
Using the customers’ prompts to easily reach functionality that lies deeper in the app. To get consistent and reliable answers it’s best to keep prompts simple.
👥 Collaboration
I loved working together with the data science engineer. Really helped me understand his thinking, expertise and way-of-working.
✅ Data quality
Make sure there is more meta data available on transactions. Like the store name, location, country or city.
Outcomes
The example were used to help define the future IT landscape and understand the role of Conversational AI.
Would like to know more?
For ABN AMRO
Year 2023
Objective Understanding customer value and business requirements of using the cutting-edge technology of GPT4, when helping customers improve their spending behaviour.
Role Initiator, facilitating the process, creating mockups, supporting with data science related activities
Collaboration De Vos Meaker (Data Science engineer).