|
|
|
@ -4,6 +4,15 @@ worker1 = Worker(ai_name="Plinus", openai_api_key="")
|
|
|
|
|
worker2 = Worker(ai_name="Optimus Prime", openai_api_key="")
|
|
|
|
|
|
|
|
|
|
collab = DialogueSimulator([worker1, worker2], DialogueSimulator.select_next_speaker)
|
|
|
|
|
collab.reset()
|
|
|
|
|
collab.step()
|
|
|
|
|
|
|
|
|
|
# collab.start("My name is Plinus and I am a worker", "How are you?")
|
|
|
|
|
|
|
|
|
|
max_iters = 6
|
|
|
|
|
n = 0
|
|
|
|
|
|
|
|
|
|
while n < max_iters:
|
|
|
|
|
collab.start("My name is Plinus and I am a worker", "How are you?")
|
|
|
|
|
print(f"({name}): {message}")
|
|
|
|
|
print("\n")
|
|
|
|
|
n += 1
|