From 754a468595a6dfbc75e8cad94d472ae36c9189f0 Mon Sep 17 00:00:00 2001 From: evelynmitchell Date: Mon, 17 Jun 2024 20:26:29 -0600 Subject: [PATCH 1/3] change prompt in first example, readme to avoid refusal --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4a457bee..7ca462c7 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ llm = OpenAIChat( agent = Agent(llm=llm, max_loops=1, autosave=True, dashboard=True) # Run the workflow on a task -agent.run("Generate a 10,000 word blog on health and wellness.") +agent.run("Generate a 10,000 word article on health and wellness for men under 50.") ``` From 461c40a9eb74b9a5171d04417911f749b5ad1a46 Mon Sep 17 00:00:00 2001 From: evelynmitchell Date: Mon, 17 Jun 2024 20:35:55 -0600 Subject: [PATCH 2/3] add init to playground for chromadb --- playground/__init__.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 playground/__init__.py diff --git a/playground/__init__.py b/playground/__init__.py new file mode 100644 index 00000000..c1359528 --- /dev/null +++ b/playground/__init__.py @@ -0,0 +1,3 @@ + +from playground.memory import * # noqa: E402, F403 + From 7e8380ca20adbd4961db76cea1e5a8313c1ee710 Mon Sep 17 00:00:00 2001 From: evelynmitchell Date: Mon, 17 Jun 2024 20:35:59 -0600 Subject: [PATCH 3/3] LTmemory example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7ca462c7..4d44f62f 100644 --- a/README.md +++ b/README.md @@ -114,7 +114,7 @@ agent.run("Generate a 10,000 word article on health and wellness for men under 5 import os from dotenv import load_dotenv from swarms import Agent, OpenAIChat -from playground.memory.chromadb_example import ChromaDB +from swarms.playground.memory.chromadb_example import ChromaDB import logging import os import uuid