Spaces:
Sleeping
Sleeping
File size: 7,186 Bytes
f74bce1 74ee21a f74bce1 14a02b9 f74bce1 14a02b9 f74bce1 74ee21a f74bce1 14a02b9 f74bce1 74ee21a f74bce1 14a02b9 74ee21a 14a02b9 f74bce1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 | #!/usr/bin/env python3
"""Start ProofFrame with live env and run the final B2 plus Genblaze proof."""
from __future__ import annotations
import argparse
import importlib.util
import json
import os
from pathlib import Path
import subprocess
import sys
import time
from typing import Any, Callable
from urllib.error import URLError
from urllib.request import urlopen
from proofframe.config import Settings
ROOT = Path(__file__).resolve().parents[1]
EVIDENCE_SCHEMA = "proofframe.final_live_proof.v1"
EVIDENCE_MODE = "final_live_proof_ready"
DEFAULT_ENV_FILE = ROOT / ".env.final.local"
DEFAULT_EVIDENCE = ROOT / "docs" / "assets" / "final-live-proof-evidence.json"
DEFAULT_LOG = ROOT / "var" / "live-proof" / "uvicorn.log"
LIVE_PROOF_PATH = ROOT / "scripts" / "live_proof.py"
LIVE_ENV_HANDOFF_PATH = ROOT / "scripts" / "live_env_handoff.py"
LIVE_PROOF_SPEC = importlib.util.spec_from_file_location("live_proof", LIVE_PROOF_PATH)
live_proof = importlib.util.module_from_spec(LIVE_PROOF_SPEC)
assert LIVE_PROOF_SPEC.loader is not None
LIVE_PROOF_SPEC.loader.exec_module(live_proof)
LIVE_ENV_HANDOFF_SPEC = importlib.util.spec_from_file_location(
"live_env_handoff", LIVE_ENV_HANDOFF_PATH
)
live_env_handoff = importlib.util.module_from_spec(LIVE_ENV_HANDOFF_SPEC)
assert LIVE_ENV_HANDOFF_SPEC.loader is not None
LIVE_ENV_HANDOFF_SPEC.loader.exec_module(live_env_handoff)
def build_uvicorn_command(host: str, port: int) -> list[str]:
return [
sys.executable,
"-m",
"uvicorn",
"proofframe.app:app",
"--host",
host,
"--port",
str(port),
]
def base_url(host: str, port: int) -> str:
return f"http://{host}:{port}"
def read_health(url: str) -> dict[str, Any]:
with urlopen(f"{url.rstrip('/')}/api/health", timeout=2) as response:
return json.loads(response.read().decode("utf-8"))
def apply_env_file(
env_file: Path | None,
*,
genblaze_provider: str = "",
genblaze_image_model: str = "",
) -> dict[str, str]:
values: dict[str, str] = {}
if env_file and env_file.exists():
values.update(live_env_handoff.parse_env_file(env_file))
if genblaze_provider:
values["GENBLAZE_PROVIDER"] = genblaze_provider
if genblaze_image_model:
values["GENBLAZE_IMAGE_MODEL"] = genblaze_image_model
values["PROOFFRAME_STORAGE_BACKEND"] = "b2"
values["PROOFFRAME_GENERATION_BACKEND"] = "genblaze"
os.environ.update(values)
return values
def wait_for_live_app(
url: str,
*,
timeout_seconds: float,
read: Callable[[str], dict[str, Any]] = read_health,
) -> dict[str, Any]:
deadline = time.monotonic() + timeout_seconds
last_error = ""
while time.monotonic() < deadline:
try:
health = read(url)
except (OSError, URLError, json.JSONDecodeError) as exc:
last_error = str(exc)
else:
if (
health.get("ready")
and health.get("storage_backend") == "b2"
and health.get("generation_backend") == "genblaze"
):
return health
last_error = (
"App responded but did not report storage_backend=b2 and "
f"generation_backend=genblaze: {health}"
)
time.sleep(0.5)
raise RuntimeError(f"Live ProofFrame app did not become ready. Last error: {last_error}")
def annotate_final_evidence(path: Path) -> bool:
try:
evidence = json.loads(path.read_text(encoding="utf-8"))
except (FileNotFoundError, json.JSONDecodeError):
return False
if not isinstance(evidence, dict):
return False
evidence.setdefault("schema", EVIDENCE_SCHEMA)
evidence.setdefault("mode", EVIDENCE_MODE)
path.write_text(json.dumps(evidence, indent=2) + "\n", encoding="utf-8")
return True
def run_final_live_proof(args: argparse.Namespace) -> int:
apply_env_file(
args.env_file,
genblaze_provider=getattr(args, "genblaze_provider", ""),
genblaze_image_model=getattr(args, "genblaze_image_model", ""),
)
settings = Settings.from_env()
report = live_proof.build_preflight_report(
settings,
require_storage_backend="b2",
require_generation_backend="genblaze",
)
print(json.dumps(report, indent=2))
if not report["ok"]:
return 2
if args.preflight_only:
return 0
url = base_url(args.host, args.port)
command = build_uvicorn_command(args.host, args.port)
args.log_path.parent.mkdir(parents=True, exist_ok=True)
with args.log_path.open("w", encoding="utf-8") as log:
process = subprocess.Popen(command, cwd=ROOT, stdout=log, stderr=subprocess.STDOUT)
try:
health = wait_for_live_app(url, timeout_seconds=args.timeout_seconds)
print(
json.dumps(
{
"ok": True,
"base_url": url,
"health": health,
"log_path": str(args.log_path),
},
indent=2,
)
)
smoke_command = live_proof.build_api_smoke_command(
base_url=url,
evidence_out=args.evidence_out,
require_storage_backend="b2",
require_generation_backend="genblaze",
)
completed = subprocess.run(smoke_command, cwd=ROOT, check=False)
if completed.returncode == 0:
annotate_final_evidence(args.evidence_out)
return completed.returncode
finally:
process.terminate()
try:
process.wait(timeout=5)
except subprocess.TimeoutExpired:
process.kill()
process.wait(timeout=5)
def build_parser() -> argparse.ArgumentParser:
parser = argparse.ArgumentParser(
description=(
"Start a local ProofFrame server with inherited live B2/Genblaze environment "
"and write final-live-proof-evidence.json."
)
)
parser.add_argument("--host", default="127.0.0.1")
parser.add_argument("--env-file", type=Path, default=DEFAULT_ENV_FILE)
parser.add_argument("--port", type=int, default=8088)
parser.add_argument("--timeout-seconds", type=float, default=30)
parser.add_argument("--evidence-out", type=Path, default=DEFAULT_EVIDENCE)
parser.add_argument("--log-path", type=Path, default=DEFAULT_LOG)
parser.add_argument(
"--genblaze-provider",
default="",
help="Optional non-secret override such as local, openai, or gmicloud.",
)
parser.add_argument(
"--genblaze-image-model",
default="",
help="Optional non-secret model override such as gpt-image-1.",
)
parser.add_argument(
"--preflight-only",
action="store_true",
help="Check env/packages only; do not start the app or write evidence.",
)
return parser
def main() -> None:
raise SystemExit(run_final_live_proof(build_parser().parse_args()))
if __name__ == "__main__":
main()
|