How can I store three consecutive chat responses into Postgres database columns?

I am trying to create a simple Scrum standup meeting Chat Agent. I want the agent to ask the following three questions:

  1. What did you do today?
  2. What will you do tomorrow?
  3. Do you have any impediments?

Then, store the responses in a table (standup_responses) in the Today, Tomorrow, and Impediments columns based on the question that was asked.

I have tried setting up conversational agents, tool agents, and a combination of both. I have tried adding memory to one agent to both agents. Nothing works.

I don’t need help setting up credentials or the database. I need help configuring the agents to ask the questions consecutively through the local chat and store the responses in the database.