diff --git a/agent-office/app/service_proxy.py b/agent-office/app/service_proxy.py index 4db5dd1..1690a71 100644 --- a/agent-office/app/service_proxy.py +++ b/agent-office/app/service_proxy.py @@ -399,6 +399,21 @@ async def lotto_evolver_evaluate() -> Dict[str, Any]: return resp.json() +async def lotto_backtest_review(draw_no: int) -> Dict[str, Any]: + from .config import LOTTO_BACKEND_URL + resp = await _client.get(f"{LOTTO_BACKEND_URL}/api/lotto/backtest/review/{draw_no}") + resp.raise_for_status() + return resp.json() + + +async def lotto_backtest_run_forward(draw_no: int) -> Dict[str, Any]: + from .config import LOTTO_BACKEND_URL + resp = await _client.post(f"{LOTTO_BACKEND_URL}/api/lotto/backtest/run-forward", + params={"draw_no": draw_no}) + resp.raise_for_status() + return resp.json() + + from .config import AGENT_CONTAINER_MAP