mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-04-28 19:51:11 +00:00
Merge pull request #1057 from 3clyp50/feat/proj-inherit
feat: setting to inherit active project on new chat
This commit is contained in:
commit
8d855c9e0d
3 changed files with 25 additions and 9 deletions
|
|
@ -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),
|
||||
)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue