Files
srbhr--resume-matcher/apps/backend/e2e_monitor/__init__.py
T
wehub-resource-sync 5bdf4cc89a
Publish Docker Image / publish (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:39:36 +08:00

15 lines
631 B
Python

"""Agentic end-to-end monitor harness (opt-in, on-demand).
This package is INERT by default: it has no import side effects, is never
imported by ``app/*`` or by the default test suite, and every expensive move
refuses to run unless explicitly enabled (see ``e2e_monitor.gate``). See
``docs/superpowers/specs/2026-06-01-agentic-e2e-monitor-design.md``.
"""
__version__ = "0.1.0"
# Single source of truth for the backend API base the monitor drives. Defined
# here as an inert, side-effect-free constant so render.py / flow.py / servers.py
# don't each hard-code the URL and drift apart.
API_BASE = "http://127.0.0.1:8000/api/v1"