From 69e2c289e5a6e4cfd6b7187a3c4fda5c538d5d35 Mon Sep 17 00:00:00 2001 From: Stan Girard Date: Fri, 4 Aug 2023 10:17:26 +0200 Subject: [PATCH] fix(pg-database): by default variable is not implemented (#848) --- backend/core/models/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/core/models/settings.py b/backend/core/models/settings.py index 22d10f423562..efd2a4088932 100644 --- a/backend/core/models/settings.py +++ b/backend/core/models/settings.py @@ -15,7 +15,7 @@ class BrainSettings(BaseSettings): anthropic_api_key: str supabase_url: str supabase_service_key: str - pg_database_url: str + pg_database_url: str = "not implemented" resend_api_key: str = "null" resend_email_address: str = "brain@mail.quivr.app"