From ad057a56c63458f69c58a479b8488d8b3d075960 Mon Sep 17 00:00:00 2001 From: evelynmitchell Date: Sun, 28 Jan 2024 17:01:41 -0700 Subject: [PATCH] abstract vector db --- swarms/structs/agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swarms/structs/agent.py b/swarms/structs/agent.py index bd245ba7..a5173482 100644 --- a/swarms/structs/agent.py +++ b/swarms/structs/agent.py @@ -9,7 +9,7 @@ from typing import Any, Callable, Dict, List, Optional, Tuple from termcolor import colored -from swarms.memory.base_vectordb import AbstractDatabase +from swarms.memory.base_vectordb import AbstractVectorDatabase from swarms.prompts.agent_system_prompts import ( AGENT_SYSTEM_PROMPT_3, )