2025-02-14 17:46:58 -08:00
|
|
|
import glob
|
2025-01-08 14:55:42 -08:00
|
|
|
import os
|
2025-02-14 17:46:58 -08:00
|
|
|
import subprocess
|
|
|
|
|
import sys
|
2024-10-05 10:49:47 -07:00
|
|
|
import yaml
|
2024-10-10 17:44:41 -07:00
|
|
|
import logging
|
2025-12-25 14:55:29 -08:00
|
|
|
from planoai.consts import PLANO_DOCKER_NAME
|
2024-11-26 13:13:02 -08:00
|
|
|
|
2026-02-09 09:25:43 -08:00
|
|
|
# Standard env var for log level across all Plano components
|
|
|
|
|
LOG_LEVEL_ENV = "LOG_LEVEL"
|
|
|
|
|
|
|
|
|
|
_env_log_level = os.environ.get(LOG_LEVEL_ENV, "info").upper()
|
|
|
|
|
_log_level = getattr(logging, _env_log_level, logging.INFO)
|
|
|
|
|
|
2024-10-10 17:44:41 -07:00
|
|
|
logging.basicConfig(
|
2026-02-09 09:25:43 -08:00
|
|
|
level=_log_level,
|
2024-10-10 17:44:41 -07:00
|
|
|
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
2026-02-09 09:25:43 -08:00
|
|
|
def set_log_level(level: str):
|
|
|
|
|
"""Set the log level for all loggers. Accepts: debug, info, warn, error."""
|
|
|
|
|
global _log_level
|
|
|
|
|
numeric_level = getattr(logging, level.upper(), None)
|
|
|
|
|
if numeric_level is None:
|
|
|
|
|
raise ValueError(f"Invalid log level: {level}")
|
|
|
|
|
_log_level = numeric_level
|
|
|
|
|
logging.getLogger().setLevel(_log_level)
|
|
|
|
|
# Update all existing planoai loggers
|
|
|
|
|
for name in logging.Logger.manager.loggerDict:
|
|
|
|
|
logging.getLogger(name).setLevel(_log_level)
|
|
|
|
|
|
|
|
|
|
|
2024-10-10 17:44:41 -07:00
|
|
|
def getLogger(name="cli"):
|
|
|
|
|
logger = logging.getLogger(name)
|
2026-02-09 09:25:43 -08:00
|
|
|
logger.setLevel(_log_level)
|
2024-10-10 17:44:41 -07:00
|
|
|
return logger
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
log = getLogger(__name__)
|
2024-10-03 18:21:27 -07:00
|
|
|
|
2024-10-09 11:25:07 -07:00
|
|
|
|
2025-12-25 14:55:29 -08:00
|
|
|
def find_repo_root(start_path=None):
|
|
|
|
|
"""Find the repository root by looking for Dockerfile or .git directory."""
|
|
|
|
|
if start_path is None:
|
|
|
|
|
start_path = os.getcwd()
|
|
|
|
|
|
|
|
|
|
current = os.path.abspath(start_path)
|
|
|
|
|
|
|
|
|
|
while current != os.path.dirname(current): # Stop at filesystem root
|
|
|
|
|
# Check for markers that indicate repo root
|
|
|
|
|
if (
|
|
|
|
|
os.path.exists(os.path.join(current, "Dockerfile"))
|
|
|
|
|
and os.path.exists(os.path.join(current, "crates"))
|
|
|
|
|
and os.path.exists(os.path.join(current, "config"))
|
|
|
|
|
):
|
|
|
|
|
return current
|
|
|
|
|
|
|
|
|
|
# Also check for .git as fallback
|
|
|
|
|
if os.path.exists(os.path.join(current, ".git")):
|
|
|
|
|
# Verify it's the right repo by checking for expected structure
|
|
|
|
|
if os.path.exists(os.path.join(current, "crates")):
|
|
|
|
|
return current
|
|
|
|
|
|
|
|
|
|
current = os.path.dirname(current)
|
|
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
Rename all arch references to plano (#745)
* Rename all arch references to plano across the codebase
Complete rebrand from "Arch"/"archgw" to "Plano" including:
- Config files: arch_config_schema.yaml, workflow, demo configs
- Environment variables: ARCH_CONFIG_* → PLANO_CONFIG_*
- Python CLI: variables, functions, file paths, docker mounts
- Rust crates: config paths, log messages, metadata keys
- Docker/build: Dockerfile, supervisord, .dockerignore, .gitignore
- Docker Compose: volume mounts and env vars across all demos/tests
- GitHub workflows: job/step names
- Shell scripts: log messages
- Demos: Python code, READMEs, VS Code configs, Grafana dashboard
- Docs: RST includes, code comments, config references
- Package metadata: package.json, pyproject.toml, uv.lock
External URLs (docs.archgw.com, github.com/katanemo/archgw) left as-is.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Update remaining arch references in docs
- Rename RST cross-reference labels: arch_access_logging, arch_overview_tracing, arch_overview_threading → plano_*
- Update label references in request_lifecycle.rst
- Rename arch_config_state_storage_example.yaml → plano_config_state_storage_example.yaml
- Update config YAML comments: "Arch creates/uses" → "Plano creates/uses"
- Update "the Arch gateway" → "the Plano gateway" in configuration_reference.rst
- Update arch_config_schema.yaml reference in provider_models.py
- Rename arch_agent_router → plano_agent_router in config example
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Fix remaining arch references found in second pass
- config/docker-compose.dev.yaml: ARCH_CONFIG_FILE → PLANO_CONFIG_FILE,
arch_config.yaml → plano_config.yaml, archgw_logs → plano_logs
- config/test_passthrough.yaml: container mount path
- tests/e2e/docker-compose.yaml: source file path (was still arch_config.yaml)
- cli/planoai/core.py: comment and log message
- crates/brightstaff/src/tracing/constants.rs: doc comment
- tests/{e2e,archgw}/common.py: get_arch_messages → get_plano_messages,
arch_state/arch_messages variables renamed
- tests/{e2e,archgw}/test_prompt_gateway.py: updated imports and usages
- demos/shared/test_runner/{common,test_demos}.py: same renames
- tests/e2e/test_model_alias_routing.py: docstring
- .dockerignore: archgw_modelserver → plano_modelserver
- demos/use_cases/claude_code_router/pretty_model_resolution.sh: container name
Note: x-arch-* HTTP header values and Rust constant names intentionally
preserved for backwards compatibility with existing deployments.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 15:16:56 -08:00
|
|
|
def has_ingress_listener(plano_config_file):
|
|
|
|
|
"""Check if the plano config file has ingress_traffic listener configured."""
|
2025-09-29 19:23:08 -07:00
|
|
|
try:
|
Rename all arch references to plano (#745)
* Rename all arch references to plano across the codebase
Complete rebrand from "Arch"/"archgw" to "Plano" including:
- Config files: arch_config_schema.yaml, workflow, demo configs
- Environment variables: ARCH_CONFIG_* → PLANO_CONFIG_*
- Python CLI: variables, functions, file paths, docker mounts
- Rust crates: config paths, log messages, metadata keys
- Docker/build: Dockerfile, supervisord, .dockerignore, .gitignore
- Docker Compose: volume mounts and env vars across all demos/tests
- GitHub workflows: job/step names
- Shell scripts: log messages
- Demos: Python code, READMEs, VS Code configs, Grafana dashboard
- Docs: RST includes, code comments, config references
- Package metadata: package.json, pyproject.toml, uv.lock
External URLs (docs.archgw.com, github.com/katanemo/archgw) left as-is.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Update remaining arch references in docs
- Rename RST cross-reference labels: arch_access_logging, arch_overview_tracing, arch_overview_threading → plano_*
- Update label references in request_lifecycle.rst
- Rename arch_config_state_storage_example.yaml → plano_config_state_storage_example.yaml
- Update config YAML comments: "Arch creates/uses" → "Plano creates/uses"
- Update "the Arch gateway" → "the Plano gateway" in configuration_reference.rst
- Update arch_config_schema.yaml reference in provider_models.py
- Rename arch_agent_router → plano_agent_router in config example
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Fix remaining arch references found in second pass
- config/docker-compose.dev.yaml: ARCH_CONFIG_FILE → PLANO_CONFIG_FILE,
arch_config.yaml → plano_config.yaml, archgw_logs → plano_logs
- config/test_passthrough.yaml: container mount path
- tests/e2e/docker-compose.yaml: source file path (was still arch_config.yaml)
- cli/planoai/core.py: comment and log message
- crates/brightstaff/src/tracing/constants.rs: doc comment
- tests/{e2e,archgw}/common.py: get_arch_messages → get_plano_messages,
arch_state/arch_messages variables renamed
- tests/{e2e,archgw}/test_prompt_gateway.py: updated imports and usages
- demos/shared/test_runner/{common,test_demos}.py: same renames
- tests/e2e/test_model_alias_routing.py: docstring
- .dockerignore: archgw_modelserver → plano_modelserver
- demos/use_cases/claude_code_router/pretty_model_resolution.sh: container name
Note: x-arch-* HTTP header values and Rust constant names intentionally
preserved for backwards compatibility with existing deployments.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 15:16:56 -08:00
|
|
|
with open(plano_config_file) as f:
|
|
|
|
|
plano_config_dict = yaml.safe_load(f)
|
2025-09-29 19:23:08 -07:00
|
|
|
|
Rename all arch references to plano (#745)
* Rename all arch references to plano across the codebase
Complete rebrand from "Arch"/"archgw" to "Plano" including:
- Config files: arch_config_schema.yaml, workflow, demo configs
- Environment variables: ARCH_CONFIG_* → PLANO_CONFIG_*
- Python CLI: variables, functions, file paths, docker mounts
- Rust crates: config paths, log messages, metadata keys
- Docker/build: Dockerfile, supervisord, .dockerignore, .gitignore
- Docker Compose: volume mounts and env vars across all demos/tests
- GitHub workflows: job/step names
- Shell scripts: log messages
- Demos: Python code, READMEs, VS Code configs, Grafana dashboard
- Docs: RST includes, code comments, config references
- Package metadata: package.json, pyproject.toml, uv.lock
External URLs (docs.archgw.com, github.com/katanemo/archgw) left as-is.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Update remaining arch references in docs
- Rename RST cross-reference labels: arch_access_logging, arch_overview_tracing, arch_overview_threading → plano_*
- Update label references in request_lifecycle.rst
- Rename arch_config_state_storage_example.yaml → plano_config_state_storage_example.yaml
- Update config YAML comments: "Arch creates/uses" → "Plano creates/uses"
- Update "the Arch gateway" → "the Plano gateway" in configuration_reference.rst
- Update arch_config_schema.yaml reference in provider_models.py
- Rename arch_agent_router → plano_agent_router in config example
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Fix remaining arch references found in second pass
- config/docker-compose.dev.yaml: ARCH_CONFIG_FILE → PLANO_CONFIG_FILE,
arch_config.yaml → plano_config.yaml, archgw_logs → plano_logs
- config/test_passthrough.yaml: container mount path
- tests/e2e/docker-compose.yaml: source file path (was still arch_config.yaml)
- cli/planoai/core.py: comment and log message
- crates/brightstaff/src/tracing/constants.rs: doc comment
- tests/{e2e,archgw}/common.py: get_arch_messages → get_plano_messages,
arch_state/arch_messages variables renamed
- tests/{e2e,archgw}/test_prompt_gateway.py: updated imports and usages
- demos/shared/test_runner/{common,test_demos}.py: same renames
- tests/e2e/test_model_alias_routing.py: docstring
- .dockerignore: archgw_modelserver → plano_modelserver
- demos/use_cases/claude_code_router/pretty_model_resolution.sh: container name
Note: x-arch-* HTTP header values and Rust constant names intentionally
preserved for backwards compatibility with existing deployments.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 15:16:56 -08:00
|
|
|
ingress_traffic = plano_config_dict.get("listeners", {}).get(
|
2025-09-29 19:23:08 -07:00
|
|
|
"ingress_traffic", {}
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
return bool(ingress_traffic)
|
|
|
|
|
except Exception as e:
|
Rename all arch references to plano (#745)
* Rename all arch references to plano across the codebase
Complete rebrand from "Arch"/"archgw" to "Plano" including:
- Config files: arch_config_schema.yaml, workflow, demo configs
- Environment variables: ARCH_CONFIG_* → PLANO_CONFIG_*
- Python CLI: variables, functions, file paths, docker mounts
- Rust crates: config paths, log messages, metadata keys
- Docker/build: Dockerfile, supervisord, .dockerignore, .gitignore
- Docker Compose: volume mounts and env vars across all demos/tests
- GitHub workflows: job/step names
- Shell scripts: log messages
- Demos: Python code, READMEs, VS Code configs, Grafana dashboard
- Docs: RST includes, code comments, config references
- Package metadata: package.json, pyproject.toml, uv.lock
External URLs (docs.archgw.com, github.com/katanemo/archgw) left as-is.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Update remaining arch references in docs
- Rename RST cross-reference labels: arch_access_logging, arch_overview_tracing, arch_overview_threading → plano_*
- Update label references in request_lifecycle.rst
- Rename arch_config_state_storage_example.yaml → plano_config_state_storage_example.yaml
- Update config YAML comments: "Arch creates/uses" → "Plano creates/uses"
- Update "the Arch gateway" → "the Plano gateway" in configuration_reference.rst
- Update arch_config_schema.yaml reference in provider_models.py
- Rename arch_agent_router → plano_agent_router in config example
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Fix remaining arch references found in second pass
- config/docker-compose.dev.yaml: ARCH_CONFIG_FILE → PLANO_CONFIG_FILE,
arch_config.yaml → plano_config.yaml, archgw_logs → plano_logs
- config/test_passthrough.yaml: container mount path
- tests/e2e/docker-compose.yaml: source file path (was still arch_config.yaml)
- cli/planoai/core.py: comment and log message
- crates/brightstaff/src/tracing/constants.rs: doc comment
- tests/{e2e,archgw}/common.py: get_arch_messages → get_plano_messages,
arch_state/arch_messages variables renamed
- tests/{e2e,archgw}/test_prompt_gateway.py: updated imports and usages
- demos/shared/test_runner/{common,test_demos}.py: same renames
- tests/e2e/test_model_alias_routing.py: docstring
- .dockerignore: archgw_modelserver → plano_modelserver
- demos/use_cases/claude_code_router/pretty_model_resolution.sh: container name
Note: x-arch-* HTTP header values and Rust constant names intentionally
preserved for backwards compatibility with existing deployments.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 15:16:56 -08:00
|
|
|
log.error(f"Error reading config file {plano_config_file}: {e}")
|
2025-09-29 19:23:08 -07:00
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
2025-10-14 14:01:11 -07:00
|
|
|
def convert_legacy_listeners(
|
|
|
|
|
listeners: dict | list, model_providers: list | None
|
|
|
|
|
) -> tuple[list, dict | None, dict | None]:
|
|
|
|
|
llm_gateway_listener = {
|
|
|
|
|
"name": "egress_traffic",
|
2026-03-18 17:58:20 -07:00
|
|
|
"type": "model",
|
2025-10-14 14:01:11 -07:00
|
|
|
"port": 12000,
|
|
|
|
|
"address": "0.0.0.0",
|
|
|
|
|
"timeout": "30s",
|
|
|
|
|
"model_providers": model_providers or [],
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
prompt_gateway_listener = {
|
|
|
|
|
"name": "ingress_traffic",
|
2026-03-18 17:58:20 -07:00
|
|
|
"type": "prompt",
|
2025-10-14 14:01:11 -07:00
|
|
|
"port": 10000,
|
|
|
|
|
"address": "0.0.0.0",
|
|
|
|
|
"timeout": "30s",
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-17 17:30:14 -08:00
|
|
|
# Handle None case
|
|
|
|
|
if listeners is None:
|
|
|
|
|
return [llm_gateway_listener], llm_gateway_listener, prompt_gateway_listener
|
|
|
|
|
|
2025-10-14 14:01:11 -07:00
|
|
|
if isinstance(listeners, dict):
|
|
|
|
|
# legacy listeners
|
|
|
|
|
# check if type is array or object
|
|
|
|
|
# if its dict its legacy format let's convert it to array
|
|
|
|
|
updated_listeners = []
|
|
|
|
|
ingress_traffic = listeners.get("ingress_traffic", {})
|
|
|
|
|
egress_traffic = listeners.get("egress_traffic", {})
|
|
|
|
|
|
|
|
|
|
llm_gateway_listener["port"] = egress_traffic.get(
|
|
|
|
|
"port", llm_gateway_listener["port"]
|
|
|
|
|
)
|
|
|
|
|
llm_gateway_listener["address"] = egress_traffic.get(
|
|
|
|
|
"address", llm_gateway_listener["address"]
|
|
|
|
|
)
|
|
|
|
|
llm_gateway_listener["timeout"] = egress_traffic.get(
|
|
|
|
|
"timeout", llm_gateway_listener["timeout"]
|
|
|
|
|
)
|
|
|
|
|
if model_providers is None or model_providers == []:
|
|
|
|
|
raise ValueError("model_providers cannot be empty when using legacy format")
|
|
|
|
|
|
|
|
|
|
llm_gateway_listener["model_providers"] = model_providers
|
|
|
|
|
updated_listeners.append(llm_gateway_listener)
|
|
|
|
|
|
|
|
|
|
if ingress_traffic and ingress_traffic != {}:
|
|
|
|
|
prompt_gateway_listener["port"] = ingress_traffic.get(
|
|
|
|
|
"port", prompt_gateway_listener["port"]
|
|
|
|
|
)
|
|
|
|
|
prompt_gateway_listener["address"] = ingress_traffic.get(
|
|
|
|
|
"address", prompt_gateway_listener["address"]
|
|
|
|
|
)
|
|
|
|
|
prompt_gateway_listener["timeout"] = ingress_traffic.get(
|
|
|
|
|
"timeout", prompt_gateway_listener["timeout"]
|
|
|
|
|
)
|
|
|
|
|
updated_listeners.append(prompt_gateway_listener)
|
|
|
|
|
|
|
|
|
|
return updated_listeners, llm_gateway_listener, prompt_gateway_listener
|
|
|
|
|
|
|
|
|
|
model_provider_set = False
|
|
|
|
|
for listener in listeners:
|
2026-01-28 20:31:01 -08:00
|
|
|
if listener.get("type") == "model":
|
2025-10-14 14:01:11 -07:00
|
|
|
if model_provider_set:
|
|
|
|
|
raise ValueError(
|
|
|
|
|
"Currently only one listener can have model_providers set"
|
|
|
|
|
)
|
|
|
|
|
listener["model_providers"] = model_providers or []
|
|
|
|
|
model_provider_set = True
|
2026-02-17 03:09:28 -08:00
|
|
|
# Merge user listener values into defaults for the Envoy template
|
|
|
|
|
llm_gateway_listener = {**llm_gateway_listener, **listener}
|
|
|
|
|
elif listener.get("type") == "prompt":
|
|
|
|
|
prompt_gateway_listener = {**prompt_gateway_listener, **listener}
|
2025-10-14 14:01:11 -07:00
|
|
|
if not model_provider_set:
|
|
|
|
|
listeners.append(llm_gateway_listener)
|
|
|
|
|
|
|
|
|
|
return listeners, llm_gateway_listener, prompt_gateway_listener
|
|
|
|
|
|
|
|
|
|
|
Rename all arch references to plano (#745)
* Rename all arch references to plano across the codebase
Complete rebrand from "Arch"/"archgw" to "Plano" including:
- Config files: arch_config_schema.yaml, workflow, demo configs
- Environment variables: ARCH_CONFIG_* → PLANO_CONFIG_*
- Python CLI: variables, functions, file paths, docker mounts
- Rust crates: config paths, log messages, metadata keys
- Docker/build: Dockerfile, supervisord, .dockerignore, .gitignore
- Docker Compose: volume mounts and env vars across all demos/tests
- GitHub workflows: job/step names
- Shell scripts: log messages
- Demos: Python code, READMEs, VS Code configs, Grafana dashboard
- Docs: RST includes, code comments, config references
- Package metadata: package.json, pyproject.toml, uv.lock
External URLs (docs.archgw.com, github.com/katanemo/archgw) left as-is.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Update remaining arch references in docs
- Rename RST cross-reference labels: arch_access_logging, arch_overview_tracing, arch_overview_threading → plano_*
- Update label references in request_lifecycle.rst
- Rename arch_config_state_storage_example.yaml → plano_config_state_storage_example.yaml
- Update config YAML comments: "Arch creates/uses" → "Plano creates/uses"
- Update "the Arch gateway" → "the Plano gateway" in configuration_reference.rst
- Update arch_config_schema.yaml reference in provider_models.py
- Rename arch_agent_router → plano_agent_router in config example
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Fix remaining arch references found in second pass
- config/docker-compose.dev.yaml: ARCH_CONFIG_FILE → PLANO_CONFIG_FILE,
arch_config.yaml → plano_config.yaml, archgw_logs → plano_logs
- config/test_passthrough.yaml: container mount path
- tests/e2e/docker-compose.yaml: source file path (was still arch_config.yaml)
- cli/planoai/core.py: comment and log message
- crates/brightstaff/src/tracing/constants.rs: doc comment
- tests/{e2e,archgw}/common.py: get_arch_messages → get_plano_messages,
arch_state/arch_messages variables renamed
- tests/{e2e,archgw}/test_prompt_gateway.py: updated imports and usages
- demos/shared/test_runner/{common,test_demos}.py: same renames
- tests/e2e/test_model_alias_routing.py: docstring
- .dockerignore: archgw_modelserver → plano_modelserver
- demos/use_cases/claude_code_router/pretty_model_resolution.sh: container name
Note: x-arch-* HTTP header values and Rust constant names intentionally
preserved for backwards compatibility with existing deployments.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 15:16:56 -08:00
|
|
|
def get_llm_provider_access_keys(plano_config_file):
|
|
|
|
|
with open(plano_config_file, "r") as file:
|
|
|
|
|
plano_config = file.read()
|
|
|
|
|
plano_config_yaml = yaml.safe_load(plano_config)
|
2024-10-05 10:49:47 -07:00
|
|
|
|
|
|
|
|
access_key_list = []
|
2025-10-14 14:01:11 -07:00
|
|
|
|
|
|
|
|
# Convert legacy llm_providers to model_providers
|
Rename all arch references to plano (#745)
* Rename all arch references to plano across the codebase
Complete rebrand from "Arch"/"archgw" to "Plano" including:
- Config files: arch_config_schema.yaml, workflow, demo configs
- Environment variables: ARCH_CONFIG_* → PLANO_CONFIG_*
- Python CLI: variables, functions, file paths, docker mounts
- Rust crates: config paths, log messages, metadata keys
- Docker/build: Dockerfile, supervisord, .dockerignore, .gitignore
- Docker Compose: volume mounts and env vars across all demos/tests
- GitHub workflows: job/step names
- Shell scripts: log messages
- Demos: Python code, READMEs, VS Code configs, Grafana dashboard
- Docs: RST includes, code comments, config references
- Package metadata: package.json, pyproject.toml, uv.lock
External URLs (docs.archgw.com, github.com/katanemo/archgw) left as-is.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Update remaining arch references in docs
- Rename RST cross-reference labels: arch_access_logging, arch_overview_tracing, arch_overview_threading → plano_*
- Update label references in request_lifecycle.rst
- Rename arch_config_state_storage_example.yaml → plano_config_state_storage_example.yaml
- Update config YAML comments: "Arch creates/uses" → "Plano creates/uses"
- Update "the Arch gateway" → "the Plano gateway" in configuration_reference.rst
- Update arch_config_schema.yaml reference in provider_models.py
- Rename arch_agent_router → plano_agent_router in config example
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Fix remaining arch references found in second pass
- config/docker-compose.dev.yaml: ARCH_CONFIG_FILE → PLANO_CONFIG_FILE,
arch_config.yaml → plano_config.yaml, archgw_logs → plano_logs
- config/test_passthrough.yaml: container mount path
- tests/e2e/docker-compose.yaml: source file path (was still arch_config.yaml)
- cli/planoai/core.py: comment and log message
- crates/brightstaff/src/tracing/constants.rs: doc comment
- tests/{e2e,archgw}/common.py: get_arch_messages → get_plano_messages,
arch_state/arch_messages variables renamed
- tests/{e2e,archgw}/test_prompt_gateway.py: updated imports and usages
- demos/shared/test_runner/{common,test_demos}.py: same renames
- tests/e2e/test_model_alias_routing.py: docstring
- .dockerignore: archgw_modelserver → plano_modelserver
- demos/use_cases/claude_code_router/pretty_model_resolution.sh: container name
Note: x-arch-* HTTP header values and Rust constant names intentionally
preserved for backwards compatibility with existing deployments.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 15:16:56 -08:00
|
|
|
if "llm_providers" in plano_config_yaml:
|
|
|
|
|
if "model_providers" in plano_config_yaml:
|
2025-10-14 14:01:11 -07:00
|
|
|
raise Exception(
|
|
|
|
|
"Please provide either llm_providers or model_providers, not both. llm_providers is deprecated, please use model_providers instead"
|
|
|
|
|
)
|
Rename all arch references to plano (#745)
* Rename all arch references to plano across the codebase
Complete rebrand from "Arch"/"archgw" to "Plano" including:
- Config files: arch_config_schema.yaml, workflow, demo configs
- Environment variables: ARCH_CONFIG_* → PLANO_CONFIG_*
- Python CLI: variables, functions, file paths, docker mounts
- Rust crates: config paths, log messages, metadata keys
- Docker/build: Dockerfile, supervisord, .dockerignore, .gitignore
- Docker Compose: volume mounts and env vars across all demos/tests
- GitHub workflows: job/step names
- Shell scripts: log messages
- Demos: Python code, READMEs, VS Code configs, Grafana dashboard
- Docs: RST includes, code comments, config references
- Package metadata: package.json, pyproject.toml, uv.lock
External URLs (docs.archgw.com, github.com/katanemo/archgw) left as-is.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Update remaining arch references in docs
- Rename RST cross-reference labels: arch_access_logging, arch_overview_tracing, arch_overview_threading → plano_*
- Update label references in request_lifecycle.rst
- Rename arch_config_state_storage_example.yaml → plano_config_state_storage_example.yaml
- Update config YAML comments: "Arch creates/uses" → "Plano creates/uses"
- Update "the Arch gateway" → "the Plano gateway" in configuration_reference.rst
- Update arch_config_schema.yaml reference in provider_models.py
- Rename arch_agent_router → plano_agent_router in config example
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Fix remaining arch references found in second pass
- config/docker-compose.dev.yaml: ARCH_CONFIG_FILE → PLANO_CONFIG_FILE,
arch_config.yaml → plano_config.yaml, archgw_logs → plano_logs
- config/test_passthrough.yaml: container mount path
- tests/e2e/docker-compose.yaml: source file path (was still arch_config.yaml)
- cli/planoai/core.py: comment and log message
- crates/brightstaff/src/tracing/constants.rs: doc comment
- tests/{e2e,archgw}/common.py: get_arch_messages → get_plano_messages,
arch_state/arch_messages variables renamed
- tests/{e2e,archgw}/test_prompt_gateway.py: updated imports and usages
- demos/shared/test_runner/{common,test_demos}.py: same renames
- tests/e2e/test_model_alias_routing.py: docstring
- .dockerignore: archgw_modelserver → plano_modelserver
- demos/use_cases/claude_code_router/pretty_model_resolution.sh: container name
Note: x-arch-* HTTP header values and Rust constant names intentionally
preserved for backwards compatibility with existing deployments.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 15:16:56 -08:00
|
|
|
plano_config_yaml["model_providers"] = plano_config_yaml["llm_providers"]
|
|
|
|
|
del plano_config_yaml["llm_providers"]
|
2025-10-14 14:01:11 -07:00
|
|
|
|
|
|
|
|
listeners, _, _ = convert_legacy_listeners(
|
Rename all arch references to plano (#745)
* Rename all arch references to plano across the codebase
Complete rebrand from "Arch"/"archgw" to "Plano" including:
- Config files: arch_config_schema.yaml, workflow, demo configs
- Environment variables: ARCH_CONFIG_* → PLANO_CONFIG_*
- Python CLI: variables, functions, file paths, docker mounts
- Rust crates: config paths, log messages, metadata keys
- Docker/build: Dockerfile, supervisord, .dockerignore, .gitignore
- Docker Compose: volume mounts and env vars across all demos/tests
- GitHub workflows: job/step names
- Shell scripts: log messages
- Demos: Python code, READMEs, VS Code configs, Grafana dashboard
- Docs: RST includes, code comments, config references
- Package metadata: package.json, pyproject.toml, uv.lock
External URLs (docs.archgw.com, github.com/katanemo/archgw) left as-is.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Update remaining arch references in docs
- Rename RST cross-reference labels: arch_access_logging, arch_overview_tracing, arch_overview_threading → plano_*
- Update label references in request_lifecycle.rst
- Rename arch_config_state_storage_example.yaml → plano_config_state_storage_example.yaml
- Update config YAML comments: "Arch creates/uses" → "Plano creates/uses"
- Update "the Arch gateway" → "the Plano gateway" in configuration_reference.rst
- Update arch_config_schema.yaml reference in provider_models.py
- Rename arch_agent_router → plano_agent_router in config example
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Fix remaining arch references found in second pass
- config/docker-compose.dev.yaml: ARCH_CONFIG_FILE → PLANO_CONFIG_FILE,
arch_config.yaml → plano_config.yaml, archgw_logs → plano_logs
- config/test_passthrough.yaml: container mount path
- tests/e2e/docker-compose.yaml: source file path (was still arch_config.yaml)
- cli/planoai/core.py: comment and log message
- crates/brightstaff/src/tracing/constants.rs: doc comment
- tests/{e2e,archgw}/common.py: get_arch_messages → get_plano_messages,
arch_state/arch_messages variables renamed
- tests/{e2e,archgw}/test_prompt_gateway.py: updated imports and usages
- demos/shared/test_runner/{common,test_demos}.py: same renames
- tests/e2e/test_model_alias_routing.py: docstring
- .dockerignore: archgw_modelserver → plano_modelserver
- demos/use_cases/claude_code_router/pretty_model_resolution.sh: container name
Note: x-arch-* HTTP header values and Rust constant names intentionally
preserved for backwards compatibility with existing deployments.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 15:16:56 -08:00
|
|
|
plano_config_yaml.get("listeners"), plano_config_yaml.get("model_providers")
|
2025-10-14 14:01:11 -07:00
|
|
|
)
|
2024-10-05 10:49:47 -07:00
|
|
|
|
Rename all arch references to plano (#745)
* Rename all arch references to plano across the codebase
Complete rebrand from "Arch"/"archgw" to "Plano" including:
- Config files: arch_config_schema.yaml, workflow, demo configs
- Environment variables: ARCH_CONFIG_* → PLANO_CONFIG_*
- Python CLI: variables, functions, file paths, docker mounts
- Rust crates: config paths, log messages, metadata keys
- Docker/build: Dockerfile, supervisord, .dockerignore, .gitignore
- Docker Compose: volume mounts and env vars across all demos/tests
- GitHub workflows: job/step names
- Shell scripts: log messages
- Demos: Python code, READMEs, VS Code configs, Grafana dashboard
- Docs: RST includes, code comments, config references
- Package metadata: package.json, pyproject.toml, uv.lock
External URLs (docs.archgw.com, github.com/katanemo/archgw) left as-is.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Update remaining arch references in docs
- Rename RST cross-reference labels: arch_access_logging, arch_overview_tracing, arch_overview_threading → plano_*
- Update label references in request_lifecycle.rst
- Rename arch_config_state_storage_example.yaml → plano_config_state_storage_example.yaml
- Update config YAML comments: "Arch creates/uses" → "Plano creates/uses"
- Update "the Arch gateway" → "the Plano gateway" in configuration_reference.rst
- Update arch_config_schema.yaml reference in provider_models.py
- Rename arch_agent_router → plano_agent_router in config example
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Fix remaining arch references found in second pass
- config/docker-compose.dev.yaml: ARCH_CONFIG_FILE → PLANO_CONFIG_FILE,
arch_config.yaml → plano_config.yaml, archgw_logs → plano_logs
- config/test_passthrough.yaml: container mount path
- tests/e2e/docker-compose.yaml: source file path (was still arch_config.yaml)
- cli/planoai/core.py: comment and log message
- crates/brightstaff/src/tracing/constants.rs: doc comment
- tests/{e2e,archgw}/common.py: get_arch_messages → get_plano_messages,
arch_state/arch_messages variables renamed
- tests/{e2e,archgw}/test_prompt_gateway.py: updated imports and usages
- demos/shared/test_runner/{common,test_demos}.py: same renames
- tests/e2e/test_model_alias_routing.py: docstring
- .dockerignore: archgw_modelserver → plano_modelserver
- demos/use_cases/claude_code_router/pretty_model_resolution.sh: container name
Note: x-arch-* HTTP header values and Rust constant names intentionally
preserved for backwards compatibility with existing deployments.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 15:16:56 -08:00
|
|
|
for prompt_target in plano_config_yaml.get("prompt_targets", []):
|
2025-02-06 11:48:09 -08:00
|
|
|
for k, v in prompt_target.get("endpoint", {}).get("http_headers", {}).items():
|
|
|
|
|
if k.lower() == "authorization":
|
|
|
|
|
print(
|
|
|
|
|
f"found auth header: {k} for prompt_target: {prompt_target.get('name')}/{prompt_target.get('endpoint').get('name')}"
|
|
|
|
|
)
|
|
|
|
|
auth_tokens = v.split(" ")
|
|
|
|
|
if len(auth_tokens) > 1:
|
|
|
|
|
access_key_list.append(auth_tokens[1])
|
|
|
|
|
else:
|
|
|
|
|
access_key_list.append(v)
|
|
|
|
|
|
2025-10-14 14:01:11 -07:00
|
|
|
for listener in listeners:
|
|
|
|
|
for llm_provider in listener.get("model_providers", []):
|
|
|
|
|
access_key = llm_provider.get("access_key")
|
|
|
|
|
if access_key is not None:
|
|
|
|
|
access_key_list.append(access_key)
|
|
|
|
|
|
2025-12-17 12:18:38 -08:00
|
|
|
# Extract environment variables from state_storage.connection_string
|
Rename all arch references to plano (#745)
* Rename all arch references to plano across the codebase
Complete rebrand from "Arch"/"archgw" to "Plano" including:
- Config files: arch_config_schema.yaml, workflow, demo configs
- Environment variables: ARCH_CONFIG_* → PLANO_CONFIG_*
- Python CLI: variables, functions, file paths, docker mounts
- Rust crates: config paths, log messages, metadata keys
- Docker/build: Dockerfile, supervisord, .dockerignore, .gitignore
- Docker Compose: volume mounts and env vars across all demos/tests
- GitHub workflows: job/step names
- Shell scripts: log messages
- Demos: Python code, READMEs, VS Code configs, Grafana dashboard
- Docs: RST includes, code comments, config references
- Package metadata: package.json, pyproject.toml, uv.lock
External URLs (docs.archgw.com, github.com/katanemo/archgw) left as-is.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Update remaining arch references in docs
- Rename RST cross-reference labels: arch_access_logging, arch_overview_tracing, arch_overview_threading → plano_*
- Update label references in request_lifecycle.rst
- Rename arch_config_state_storage_example.yaml → plano_config_state_storage_example.yaml
- Update config YAML comments: "Arch creates/uses" → "Plano creates/uses"
- Update "the Arch gateway" → "the Plano gateway" in configuration_reference.rst
- Update arch_config_schema.yaml reference in provider_models.py
- Rename arch_agent_router → plano_agent_router in config example
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Fix remaining arch references found in second pass
- config/docker-compose.dev.yaml: ARCH_CONFIG_FILE → PLANO_CONFIG_FILE,
arch_config.yaml → plano_config.yaml, archgw_logs → plano_logs
- config/test_passthrough.yaml: container mount path
- tests/e2e/docker-compose.yaml: source file path (was still arch_config.yaml)
- cli/planoai/core.py: comment and log message
- crates/brightstaff/src/tracing/constants.rs: doc comment
- tests/{e2e,archgw}/common.py: get_arch_messages → get_plano_messages,
arch_state/arch_messages variables renamed
- tests/{e2e,archgw}/test_prompt_gateway.py: updated imports and usages
- demos/shared/test_runner/{common,test_demos}.py: same renames
- tests/e2e/test_model_alias_routing.py: docstring
- .dockerignore: archgw_modelserver → plano_modelserver
- demos/use_cases/claude_code_router/pretty_model_resolution.sh: container name
Note: x-arch-* HTTP header values and Rust constant names intentionally
preserved for backwards compatibility with existing deployments.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 15:16:56 -08:00
|
|
|
state_storage = plano_config_yaml.get("state_storage_v1_responses")
|
2025-12-17 12:18:38 -08:00
|
|
|
if state_storage:
|
|
|
|
|
connection_string = state_storage.get("connection_string")
|
|
|
|
|
if connection_string and isinstance(connection_string, str):
|
|
|
|
|
# Extract all $VAR and ${VAR} patterns from connection string
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
|
|
# Match both $VAR and ${VAR} patterns
|
|
|
|
|
pattern = r"\$\{?([A-Z_][A-Z0-9_]*)\}?"
|
|
|
|
|
matches = re.findall(pattern, connection_string)
|
|
|
|
|
for var in matches:
|
|
|
|
|
access_key_list.append(f"${var}")
|
|
|
|
|
else:
|
|
|
|
|
raise ValueError(
|
|
|
|
|
"Invalid connection string received in state_storage_v1_responses"
|
|
|
|
|
)
|
|
|
|
|
|
2024-10-05 10:49:47 -07:00
|
|
|
return access_key_list
|
|
|
|
|
|
2024-10-09 11:25:07 -07:00
|
|
|
|
2024-10-05 10:49:47 -07:00
|
|
|
def load_env_file_to_dict(file_path):
|
|
|
|
|
env_dict = {}
|
|
|
|
|
|
|
|
|
|
# Open and read the .env file
|
2024-10-09 11:25:07 -07:00
|
|
|
with open(file_path, "r") as file:
|
2024-10-05 10:49:47 -07:00
|
|
|
for line in file:
|
|
|
|
|
# Strip any leading/trailing whitespaces
|
|
|
|
|
line = line.strip()
|
|
|
|
|
|
|
|
|
|
# Skip empty lines and comments
|
2024-10-09 11:25:07 -07:00
|
|
|
if not line or line.startswith("#"):
|
2024-10-05 10:49:47 -07:00
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
# Split the line into key and value at the first '=' sign
|
2024-10-09 11:25:07 -07:00
|
|
|
if "=" in line:
|
|
|
|
|
key, value = line.split("=", 1)
|
2024-10-05 10:49:47 -07:00
|
|
|
key = key.strip()
|
|
|
|
|
value = value.strip()
|
|
|
|
|
|
|
|
|
|
# Add key-value pair to the dictionary
|
|
|
|
|
env_dict[key] = value
|
|
|
|
|
|
|
|
|
|
return env_dict
|
2025-02-14 17:46:58 -08:00
|
|
|
|
|
|
|
|
|
2025-09-29 19:23:08 -07:00
|
|
|
def find_config_file(path=".", file=None):
|
|
|
|
|
"""Find the appropriate config file path."""
|
|
|
|
|
if file:
|
|
|
|
|
# If a file is provided, process that file
|
|
|
|
|
return os.path.abspath(file)
|
|
|
|
|
else:
|
Rename all arch references to plano (#745)
* Rename all arch references to plano across the codebase
Complete rebrand from "Arch"/"archgw" to "Plano" including:
- Config files: arch_config_schema.yaml, workflow, demo configs
- Environment variables: ARCH_CONFIG_* → PLANO_CONFIG_*
- Python CLI: variables, functions, file paths, docker mounts
- Rust crates: config paths, log messages, metadata keys
- Docker/build: Dockerfile, supervisord, .dockerignore, .gitignore
- Docker Compose: volume mounts and env vars across all demos/tests
- GitHub workflows: job/step names
- Shell scripts: log messages
- Demos: Python code, READMEs, VS Code configs, Grafana dashboard
- Docs: RST includes, code comments, config references
- Package metadata: package.json, pyproject.toml, uv.lock
External URLs (docs.archgw.com, github.com/katanemo/archgw) left as-is.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Update remaining arch references in docs
- Rename RST cross-reference labels: arch_access_logging, arch_overview_tracing, arch_overview_threading → plano_*
- Update label references in request_lifecycle.rst
- Rename arch_config_state_storage_example.yaml → plano_config_state_storage_example.yaml
- Update config YAML comments: "Arch creates/uses" → "Plano creates/uses"
- Update "the Arch gateway" → "the Plano gateway" in configuration_reference.rst
- Update arch_config_schema.yaml reference in provider_models.py
- Rename arch_agent_router → plano_agent_router in config example
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Fix remaining arch references found in second pass
- config/docker-compose.dev.yaml: ARCH_CONFIG_FILE → PLANO_CONFIG_FILE,
arch_config.yaml → plano_config.yaml, archgw_logs → plano_logs
- config/test_passthrough.yaml: container mount path
- tests/e2e/docker-compose.yaml: source file path (was still arch_config.yaml)
- cli/planoai/core.py: comment and log message
- crates/brightstaff/src/tracing/constants.rs: doc comment
- tests/{e2e,archgw}/common.py: get_arch_messages → get_plano_messages,
arch_state/arch_messages variables renamed
- tests/{e2e,archgw}/test_prompt_gateway.py: updated imports and usages
- demos/shared/test_runner/{common,test_demos}.py: same renames
- tests/e2e/test_model_alias_routing.py: docstring
- .dockerignore: archgw_modelserver → plano_modelserver
- demos/use_cases/claude_code_router/pretty_model_resolution.sh: container name
Note: x-arch-* HTTP header values and Rust constant names intentionally
preserved for backwards compatibility with existing deployments.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 15:16:56 -08:00
|
|
|
# If no file is provided, use the path and look for plano_config.yaml first, then config.yaml for convenience
|
|
|
|
|
plano_config_file = os.path.abspath(os.path.join(path, "config.yaml"))
|
|
|
|
|
if not os.path.exists(plano_config_file):
|
|
|
|
|
plano_config_file = os.path.abspath(os.path.join(path, "plano_config.yaml"))
|
|
|
|
|
return plano_config_file
|
2025-09-29 19:23:08 -07:00
|
|
|
|
|
|
|
|
|
2025-02-14 17:46:58 -08:00
|
|
|
def stream_access_logs(follow):
|
|
|
|
|
"""
|
Rename all arch references to plano (#745)
* Rename all arch references to plano across the codebase
Complete rebrand from "Arch"/"archgw" to "Plano" including:
- Config files: arch_config_schema.yaml, workflow, demo configs
- Environment variables: ARCH_CONFIG_* → PLANO_CONFIG_*
- Python CLI: variables, functions, file paths, docker mounts
- Rust crates: config paths, log messages, metadata keys
- Docker/build: Dockerfile, supervisord, .dockerignore, .gitignore
- Docker Compose: volume mounts and env vars across all demos/tests
- GitHub workflows: job/step names
- Shell scripts: log messages
- Demos: Python code, READMEs, VS Code configs, Grafana dashboard
- Docs: RST includes, code comments, config references
- Package metadata: package.json, pyproject.toml, uv.lock
External URLs (docs.archgw.com, github.com/katanemo/archgw) left as-is.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Update remaining arch references in docs
- Rename RST cross-reference labels: arch_access_logging, arch_overview_tracing, arch_overview_threading → plano_*
- Update label references in request_lifecycle.rst
- Rename arch_config_state_storage_example.yaml → plano_config_state_storage_example.yaml
- Update config YAML comments: "Arch creates/uses" → "Plano creates/uses"
- Update "the Arch gateway" → "the Plano gateway" in configuration_reference.rst
- Update arch_config_schema.yaml reference in provider_models.py
- Rename arch_agent_router → plano_agent_router in config example
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Fix remaining arch references found in second pass
- config/docker-compose.dev.yaml: ARCH_CONFIG_FILE → PLANO_CONFIG_FILE,
arch_config.yaml → plano_config.yaml, archgw_logs → plano_logs
- config/test_passthrough.yaml: container mount path
- tests/e2e/docker-compose.yaml: source file path (was still arch_config.yaml)
- cli/planoai/core.py: comment and log message
- crates/brightstaff/src/tracing/constants.rs: doc comment
- tests/{e2e,archgw}/common.py: get_arch_messages → get_plano_messages,
arch_state/arch_messages variables renamed
- tests/{e2e,archgw}/test_prompt_gateway.py: updated imports and usages
- demos/shared/test_runner/{common,test_demos}.py: same renames
- tests/e2e/test_model_alias_routing.py: docstring
- .dockerignore: archgw_modelserver → plano_modelserver
- demos/use_cases/claude_code_router/pretty_model_resolution.sh: container name
Note: x-arch-* HTTP header values and Rust constant names intentionally
preserved for backwards compatibility with existing deployments.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 15:16:56 -08:00
|
|
|
Get the plano access logs
|
2025-02-14 17:46:58 -08:00
|
|
|
"""
|
|
|
|
|
|
2025-05-23 09:15:44 -07:00
|
|
|
follow_arg = "-f" if follow else ""
|
|
|
|
|
|
|
|
|
|
stream_command = [
|
|
|
|
|
"docker",
|
|
|
|
|
"exec",
|
2025-12-25 14:55:29 -08:00
|
|
|
PLANO_DOCKER_NAME,
|
2025-05-23 09:15:44 -07:00
|
|
|
"sh",
|
|
|
|
|
"-c",
|
|
|
|
|
f"tail {follow_arg} /var/log/access_*.log",
|
|
|
|
|
]
|
2025-02-14 17:46:58 -08:00
|
|
|
|
|
|
|
|
subprocess.run(
|
|
|
|
|
stream_command,
|
|
|
|
|
check=True,
|
|
|
|
|
stdout=sys.stdout,
|
|
|
|
|
stderr=sys.stderr,
|
|
|
|
|
)
|