You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
initial_message="You know, Nero, I've been thinking... The weight of leadership, it changes a man. I lost my son Willie last year, and sometimes I wonder if the price of this office is too high. Do you ever feel that way? That the crown, or in my case, the presidency, comes at a cost to your soul?"
61
+
62
+
# Set up the conversation loop
63
+
current_message=initial_message
64
+
turn_count=0
65
+
max_turns=2# Reduced number of turns for faster execution
66
+
max_retries=2# Reduced retries
67
+
68
+
print("\n=== A Private Conversation Between Leaders ===\n")
69
+
print("Lincoln and Nero share a moment of quiet reflection.")
70
+
print("Press Ctrl+C at any time to end the conversation.\n")
0 commit comments