AI_Agent_Service/get_account_info_tools.py [7:15]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
def get_account_info(account_id: str) -> str:
    """Get account information for the given account ID."""
    try:
        account_data_file = os.path.join(sample_data_path, f"{account_id}.json")
        with open(account_data_file, "r") as file:
            data = file.read()
        return data
    except FileNotFoundError:
        return "Account not found."
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



Autogen_v0.4/multi_agent/multi_agent_tools.py [7:14]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
def get_account_info(account_id: str) -> str:
    try:
        account_data_file = os.path.join(sample_data_path, f"{account_id}.json")
        with open(account_data_file, "r") as file:
            data = file.read()
        return data
    except FileNotFoundError:
        return "Account not found."
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



