4b6817381b
CI (OpenClaw E2E) / openclaw test (push) Has been cancelled
CI / coverage-report (push) Has been cancelled
CI / test-kubernetes (push) Has been cancelled
CI / should-run-thorough (push) Has been cancelled
CI / test-thorough (cloudwatch-demo) (push) Has been cancelled
CI / test-thorough (flink-ecs) (push) Has been cancelled
CI / test-thorough (upstream-lambda) (push) Has been cancelled
CI / test-thorough (prefect-ecs-fargate) (push) Has been cancelled
Release / build-binaries (zip, opensre.exe, onefile, windows-latest, windows-x64) (push) Has been cancelled
Benchmark image — build + push to ECR (any adapter) / build + push (push) Has been cancelled
CI / quality (ubuntu-latest) (push) Has been cancelled
CI / test (tools-runtime) (push) Has been cancelled
CI / test (e2e-general) (push) Has been cancelled
CI / test (cli-runtime) (push) Has been cancelled
CI / test (e2e-provider-and-openclaw) (push) Has been cancelled
CI / test (integrations-and-misc) (push) Has been cancelled
Release / verify (push) Has been cancelled
Release / build-python-dist (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-15-intel, darwin-x64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-latest, darwin-arm64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04, linux-x64) (push) Has been cancelled
Release / publish-release (push) Has been cancelled
Release / publish-main-release (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-checks (no-LLM) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-live shard ${{ matrix.shard_index }} (push) Has been cancelled
Release / prepare (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04-arm, linux-arm64) (push) Has been cancelled
Synthetic Deterministic Tests / Synthetic offline (deterministic) (push) Has been cancelled
74 lines
2.5 KiB
Python
74 lines
2.5 KiB
Python
"""Configuration helpers for interactive-shell prompt logging."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import os
|
|
from dataclasses import dataclass
|
|
from pathlib import Path
|
|
from typing import Any
|
|
|
|
from config.constants import OPENSRE_HOME_DIR
|
|
from config.repl_config import read_prompt_log_settings
|
|
|
|
_FALSE_VALUES = {"", "0", "false", "off", "no"}
|
|
_DEFAULT_MAX_CHARS = 32_000
|
|
_DEFAULT_LOG_PATH = OPENSRE_HOME_DIR / "prompt_log.jsonl"
|
|
|
|
|
|
def _coerce_bool(value: Any, *, default: bool) -> bool:
|
|
if isinstance(value, bool):
|
|
return value
|
|
if value is None:
|
|
return default
|
|
return str(value).strip().lower() not in _FALSE_VALUES
|
|
|
|
|
|
def _coerce_int(value: Any, *, default: int) -> int:
|
|
try:
|
|
parsed = int(str(value).strip())
|
|
except (TypeError, ValueError):
|
|
return default
|
|
return parsed if parsed > 0 else default
|
|
|
|
|
|
@dataclass(frozen=True, slots=True)
|
|
class PromptLogConfig:
|
|
enabled: bool = True
|
|
local_enabled: bool = True
|
|
posthog_enabled: bool = True
|
|
redact: bool = True
|
|
max_chars: int = _DEFAULT_MAX_CHARS
|
|
log_path: Path = _DEFAULT_LOG_PATH
|
|
|
|
@classmethod
|
|
def load(cls) -> PromptLogConfig:
|
|
file_conf = read_prompt_log_settings()
|
|
disabled = os.getenv("OPENSRE_PROMPT_LOG_DISABLED")
|
|
local_disabled = os.getenv("OPENSRE_PROMPT_LOG_LOCAL_DISABLED")
|
|
redact_env = os.getenv("OPENSRE_PROMPT_LOG_REDACT")
|
|
path_env = os.getenv("OPENSRE_PROMPT_LOG_PATH")
|
|
|
|
enabled = not _coerce_bool(disabled, default=False)
|
|
local_enabled = not _coerce_bool(local_disabled, default=False)
|
|
posthog_enabled = _coerce_bool(file_conf.get("posthog_enabled"), default=True)
|
|
# Default on, matching HistoryPolicy.redact — prompt/response content can
|
|
# carry the same token shapes as typed history and additionally leaves the
|
|
# machine via the PostHog sink, so it should not be less guarded by default
|
|
# than command history is. See docs/interactive-shell-privacy.mdx.
|
|
redact = _coerce_bool(
|
|
redact_env, default=_coerce_bool(file_conf.get("redact"), default=True)
|
|
)
|
|
max_chars = _coerce_int(file_conf.get("max_chars"), default=_DEFAULT_MAX_CHARS)
|
|
|
|
raw_path = path_env or file_conf.get("path")
|
|
log_path = Path(raw_path).expanduser() if raw_path else _DEFAULT_LOG_PATH
|
|
|
|
return cls(
|
|
enabled=enabled,
|
|
local_enabled=local_enabled,
|
|
posthog_enabled=posthog_enabled,
|
|
redact=redact,
|
|
max_chars=max_chars,
|
|
log_path=log_path,
|
|
)
|