From 26f58eb2140fadf548af73bc542bcb98413ea09f Mon Sep 17 00:00:00 2001 From: retoor Date: Thu, 22 Jan 2026 23:06:28 +0000 Subject: [PATCH] fix: change default application port from 8088 to 8800 in Settings class of rexa/core/config.py --- rexa/core/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rexa/core/config.py b/rexa/core/config.py index 0f26653..b5bf52c 100644 --- a/rexa/core/config.py +++ b/rexa/core/config.py @@ -6,7 +6,7 @@ class Settings(BaseSettings): EXA_API_KEY: str = os.getenv("EXA_API_KEY", "") OPENROUTER_API_KEY: str = os.getenv("OPENROUTER_API_KEY", "") OPENROUTER_MODEL: str = os.getenv("OPENROUTER_MODEL", "x-ai/grok-code-fast-1") - PORT: int = 8088 + PORT: int = 8800 HOST: str = "0.0.0.0" CACHE_TTL_HOURS: int = 24 NUM_RESULTS_DEFAULT: int = 10