diff --git a/memgpt/config.py b/memgpt/config.py index 857872e9..d22ee281 100644 --- a/memgpt/config.py +++ b/memgpt/config.py @@ -24,28 +24,6 @@ model_choices = [ ), ] - -class MemGPTConfig: - - # Model configuration - openai_key: str = None - azure_key: str = None - azure_endpoint: str = None - model_endpoint: str = None - - # Storage (archival/recall) configuration - storage_type: str = "local" # ["local", "vectordb"] - storage_url: str = None - - # Persona configuration - default_person = "" - - # Human configuration - default_human = "" - - - - class Config: personas_dir = os.path.join("memgpt", "personas", "examples") custom_personas_dir = os.path.join(MEMGPT_DIR, "personas")