From 2a46795fac56e832a81aec0860d2497b3786151f Mon Sep 17 00:00:00 2001 From: Kye Date: Wed, 28 Jun 2023 15:48:11 -0400 Subject: [PATCH] ocean database --- README.md | 1 + swarms/agents/boss/babyagi_agent.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c9a5a57d..77ecd49c 100644 --- a/README.md +++ b/README.md @@ -204,3 +204,4 @@ In the context of swarm LLMs, one could consider an **Omni-Vector Embedding Data * Get baby agi set up with the autogpt instance as a tool +* Integrate [Ocean](https://github.com/kyegomez/Ocean) vector db as the main embedding database for all the agents boss and or worker \ No newline at end of file diff --git a/swarms/agents/boss/babyagi_agent.py b/swarms/agents/boss/babyagi_agent.py index c5fac46a..a49ed80f 100644 --- a/swarms/agents/boss/babyagi_agent.py +++ b/swarms/agents/boss/babyagi_agent.py @@ -48,7 +48,7 @@ tools = [ Tool( name="AUTONOMOUS AGENT", func=agent.run, - description="Useful for when you need to spawn an autonomous agent instance as a worker to accomplish complex tasks" + description="Useful for when you need to spawn an autonomous agent instance as a worker to accomplish complex tasks, it can search the internet or spawn child multi-modality models to process and generate images and text or audio and so on" ) ]