Merge pull request #8 from Neutralmilkzzz/fix-port-conflict

Change default gateway port to 18790
This commit is contained in:
Xubin Ren
2026-02-02 14:16:01 +08:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -56,7 +56,7 @@ class ProvidersConfig(BaseModel):
class GatewayConfig(BaseModel):
"""Gateway/server configuration."""
host: str = "0.0.0.0"
port: int = 18789
port: int = 18790
class WebSearchConfig(BaseModel):