Merge pull request #1057 from 3clyp50/feat/proj-inherit

feat: setting to inherit active project on new chat
This commit is contained in:
Jan Tomášek 2026-02-27 14:08:09 +01:00 committed by GitHub
commit 8d855c9e0d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 25 additions and 9 deletions

View file

@ -141,6 +141,7 @@ class Settings(TypedDict):
litellm_global_kwargs: dict[str, Any]
update_check_enabled: bool
chat_inherit_project: bool
class PartialSettings(Settings, total=False):
@ -568,6 +569,7 @@ def get_default_settings() -> Settings:
secrets="",
litellm_global_kwargs=get_default_value("litellm_global_kwargs", {}),
update_check_enabled=get_default_value("update_check_enabled", True),
chat_inherit_project=get_default_value("chat_inherit_project", True),
)