fix: add default values for graphistry
This commit is contained in:
parent
4fb3dc31a4
commit
29ba4809fe
1 changed files with 2 additions and 2 deletions
|
|
@ -6,8 +6,8 @@ from cognee.shared.data_models import MonitoringTool
|
||||||
class BaseConfig(BaseSettings):
|
class BaseConfig(BaseSettings):
|
||||||
data_root_directory: str = get_absolute_path(".data")
|
data_root_directory: str = get_absolute_path(".data")
|
||||||
monitoring_tool: object = MonitoringTool.LANGFUSE
|
monitoring_tool: object = MonitoringTool.LANGFUSE
|
||||||
graphistry_username: str
|
graphistry_username: str = None
|
||||||
graphistry_password: str
|
graphistry_password: str = None
|
||||||
|
|
||||||
model_config = SettingsConfigDict(env_file = ".env", extra = "allow")
|
model_config = SettingsConfigDict(env_file = ".env", extra = "allow")
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue