untracked files on main: dceb101 feat(#63): IMP-34 R1 donor capacity measured bound (u1+u2)

This commit is contained in:
2026-05-21 22:07:41 +09:00
commit 8f085a28d3
3220 changed files with 985495 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
import os
import sys
from pathlib import Path
import requests
token = os.environ.get("GITEA_TOKEN")
if not token:
print("GITEA_TOKEN not set")
sys.exit(2)
body_path = Path(r"D:\ad-hoc\kei\design_agent\.orchestrator\drafts\15_stage_simulation-plan_claude_r1.md")
body = body_path.read_text(encoding="utf-8")
url = "https://gitea.hmac.kr/api/v1/repos/Kyeongmin/C.E.L_Slide_test2/issues/15/comments"
resp = requests.post(
url,
headers={"Authorization": f"token {token}"},
json={"body": body},
timeout=30,
)
print(resp.status_code)
try:
j = resp.json()
print("id=", j.get("id"))
print("html_url=", j.get("html_url"))
except Exception:
print(resp.text[:500])