def answer_user_question()

in AI_Agent_Service/AgentHandler.py [0:0]


    def answer_user_question(self, message:str):
        agent_instance = self.identify_agent(message)
        if agent_instance:
            #print(f"Agent identified: {agent_instance._agent_name}")
            return agent_instance.post_message(message)
        else:
            return "I can only answer questions about Transify account and transaction details."