git-subtree-dir: apps/core git-subtree-mainline: a8963e11e7a5a0059acbc849ce768e1eee80df61 git-subtree-split: ea2a7395f4023f5b9fab03e6273db3b64a1181d5
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")
|