Default value for V1 enabled should be true (#12469)

This commit is contained in:
Tim O'Farrell
2026-01-16 08:39:22 -07:00
committed by GitHub
parent b57ec9eda1
commit 6af8301996

View File

@@ -114,7 +114,7 @@ class SaasSettingsStore(SettingsStore):
if org_member.llm_base_url:
kwargs['llm_base_url'] = org_member.llm_base_url
if org.v1_enabled is None:
kwargs['v1_enabled'] = False
kwargs['v1_enabled'] = True
settings = Settings(**kwargs)
return settings