From d9bc24852253f98db1fb41619872fcd3a7f067a1 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 7 Oct 2025 14:53:14 +0100 Subject: [PATCH] feat: add GitHub access token support and fix file content fetching logic (#2032) --- application/core/settings.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/application/core/settings.py b/application/core/settings.py index 9b670008..d521124d 100644 --- a/application/core/settings.py +++ b/application/core/settings.py @@ -75,6 +75,9 @@ class Settings(BaseSettings): MICROSOFT_REDIRECT_URI: Optional[str] = "http://localhost:7091/api/connectors/callback" # Your project's redirect URI that you registered in Azure Portal. MICROSOFT_AUTHORITY: Optional[str] = None # e.g., "https://login.microsoftonline.com/{tenant_id}" + # GitHub source + GITHUB_ACCESS_TOKEN: Optional[str] = None # PAT token with read repo access + # LLM Cache CACHE_REDIS_URL: str = "redis://localhost:6379/2"