feat: (0.6)New UI (#1855)

Co-authored-by: 夏姜 <wenfengjiang.jwf@digital-engine.com>
Co-authored-by: aries_ckt <916701291@qq.com>
Co-authored-by: wb-lh513319 <wb-lh513319@alibaba-inc.com>
Co-authored-by: csunny <cfqsunny@163.com>
This commit is contained in:
明天
2024-08-21 17:37:45 +08:00
committed by GitHub
parent 3fc82693ba
commit b124ecc10b
824 changed files with 93371 additions and 2515 deletions

View File

@@ -314,6 +314,11 @@ class Config(metaclass=Singleton):
)
# experimental financial report model configuration
self.FIN_REPORT_MODEL = os.getenv("FIN_REPORT_MODEL", None)
# Whether to enable the new web UI, enabled by default
self.USE_NEW_WEB_UI: bool = (
os.getenv("USE_NEW_WEB_UI", "True").lower() == "true"
)
@property
def local_db_manager(self) -> "ConnectorManager":