From f0b052dadc42e78a6c35aa0b5937bdc29027c9fd Mon Sep 17 00:00:00 2001 From: geekan Date: Thu, 11 Jan 2024 15:44:53 +0800 Subject: [PATCH] remove config.py and test --- metagpt/document_store/base_store.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/metagpt/document_store/base_store.py b/metagpt/document_store/base_store.py index b719d1083..8228cfab7 100644 --- a/metagpt/document_store/base_store.py +++ b/metagpt/document_store/base_store.py @@ -8,8 +8,6 @@ from abc import ABC, abstractmethod from pathlib import Path -from metagpt.config import Config - class BaseStore(ABC): """FIXME: consider add_index, set_index and think about granularity."""