use ingress/egress

This commit is contained in:
Adil Hafeez 2025-02-14 16:43:51 -08:00
parent 4a957f2b86
commit 136daa2d3c
No known key found for this signature in database
GPG key ID: 9B18EF7691369645
18 changed files with 31 additions and 27 deletions

View file

@ -143,12 +143,12 @@ def start_arch(arch_config_file, env, log_timeout=120, foreground=False):
prompt_gateway_port = (
arch_config_dict.get("listeners", {})
.get("prompt_gateway", {})
.get("ingress_traffic", {})
.get("port", 10000)
)
llm_gateway_port = (
arch_config_dict.get("listeners", {})
.get("llm_gateway", {})
.get("egress_traffic", {})
.get("port", 12000)
)