From 55e7f186a85bcb5b0f41eab89bd064355d401197 Mon Sep 17 00:00:00 2001 From: Kye Gomez <98760976+kyegomez@users.noreply.github.com> Date: Tue, 30 Jul 2024 11:30:58 -0400 Subject: [PATCH] Update README.md --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index ae3cfcfc..48f8f753 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,6 @@ from swarms import Agent, Anthropic from swarms.prompts.finance_agent_sys_prompt import ( FINANCIAL_AGENT_SYS_PROMPT, ) -from swarms.utils.data_to_text import data_to_text # Initilaize the chromadb client chromadb = ChromaDB( @@ -177,13 +176,11 @@ agent = Agent( ) -contract = data_to_text("your_contract_pdf.pdf") agent.run( - f"Analyze the following contract and give me a full summary: {contract}" + "What are the components of a startups stock incentive equity plan" ) - ``` -------