From b74af7c8d8ba66dc6de57b2122d69184f2ea4932 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 2 Nov 2024 10:45:00 -0400 Subject: [PATCH] Update discussion.py --- examples/discussion.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/examples/discussion.py b/examples/discussion.py index 9acc33f..3c78a6b 100644 --- a/examples/discussion.py +++ b/examples/discussion.py @@ -126,13 +126,7 @@ def have_ai_discussion(topic: str, turns_per_model: int = 1, max_rounds: int = 3 # Example usage if __name__ == "__main__": # Example topics - topics = [ - "The future of human-AI collaboration in creative fields", - "The role of consciousness in artificial intelligence", - "The balance between AI advancement and ethical considerations", - "The impact of AI on human relationships and communication", - "The potential for AI to help solve climate change", - ] + topic = "The future of human-AI collaboration in creative fields", # Run a discussion on the first topic - have_ai_discussion(topic=topics[0], turns_per_model=1, max_rounds=3) + have_ai_discussion(topic=topic, turns_per_model=1, max_rounds=3)