mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-05-01 21:20:33 +00:00
project-chat inheritance toggle
This commit is contained in:
parent
fbfe8c28f6
commit
e6d716d7b5
3 changed files with 25 additions and 9 deletions
|
|
@ -157,6 +157,7 @@ class Settings(TypedDict):
|
|||
litellm_global_kwargs: dict[str, Any]
|
||||
|
||||
update_check_enabled: bool
|
||||
chat_inherit_project: bool
|
||||
|
||||
|
||||
class PartialSettings(Settings, total=False):
|
||||
|
|
@ -599,6 +600,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