From 7f2312463580d3c6f10bb9faecde168c32480bae Mon Sep 17 00:00:00 2001 From: Kye Date: Thu, 27 Jul 2023 20:44:15 -0400 Subject: [PATCH] clean up presentation Former-commit-id: 6d44c71431fd4ccd25a1fbb8662b509c4ddf6030 --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index 752f9a54..66a4d56c 100644 --- a/README.md +++ b/README.md @@ -76,12 +76,9 @@ There are 2 methods, one is through `git clone` and the other is by `pip install from swarms import swarm -api_key = "api key for openai" - objective = "What is the capital of the Uk" -result = swarm(api_key, objective) -print(result) +swarm(objective) ``` ---