fix: change default application port from 8088 to 8800 in Settings class of rexa/core/config.py

This commit is contained in:
retoor 2026-01-22 23:06:28 +00:00
parent 824e33dd8e
commit 26f58eb214

View File

@ -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