mirror of
https://github.com/cpacker/MemGPT.git
synced 2025-06-03 04:30:22 +00:00

Co-authored-by: Charles Packer <packercharles@gmail.com> Co-authored-by: Shubham Naik <shubham.naik10@gmail.com> Co-authored-by: Shubham Naik <shub@memgpt.ai>
9 lines
255 B
Python
9 lines
255 B
Python
import os
|
|
|
|
from letta.config import LettaConfig
|
|
from letta.constants import LETTA_DIR
|
|
|
|
|
|
class TestMGPTConfig(LettaConfig):
|
|
config_path: str = os.getenv("TEST_MEMGPT_CONFIG_PATH") or os.getenv("MEMGPT_CONFIG_PATH") or os.path.join(LETTA_DIR, "config")
|