From 74b13b5550718bd056dd01d1b7be153eddc9a5fe Mon Sep 17 00:00:00 2001 From: Eric Cavalcanti Date: Mon, 21 Apr 2025 21:27:29 -0500 Subject: [PATCH] Update DEFAULT_API_KEYS handling --- src/api/setting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/setting.py b/src/api/setting.py index e090300a..5bafb3f5 100644 --- a/src/api/setting.py +++ b/src/api/setting.py @@ -1,6 +1,6 @@ import os -DEFAULT_API_KEYS = "bedrock" +DEFAULT_API_KEYS = os.environ.get("DEFAULT_API_KEYS", "bedrock") API_ROUTE_PREFIX = os.environ.get("API_ROUTE_PREFIX", "/api/v1")