From 754a468595a6dfbc75e8cad94d472ae36c9189f0 Mon Sep 17 00:00:00 2001 From: evelynmitchell Date: Mon, 17 Jun 2024 20:26:29 -0600 Subject: [PATCH] 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.") ```