def escalate_to_human()

in 01-agents/6_agents.py [0:0]


def escalate_to_human(summary):
    """人間の担当者にエスカレーションする関数"""
    print(color("人間の担当者にエスカレーション中...", "red"))
    print("\n=== エスカレーションレポート ===")
    print(f"概要: {summary}")
    print("========================\n")
    exit()