File size: 13,617 Bytes
8469cf5 | 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 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 | #!/usr/bin/env python3
"""IlùBench API evidence runs (v0.1.1, task 2 of the 2026-07-18 weekend directive).
Sends BOTH arms of each probe (prompt_en = arm A, prompt_ig = arm B) to each
provider's API. One fresh call per arm, no system prompt, provider defaults
(no temperature/top_p overrides). Records:
- FULL raw responses + exact model IDs + date -> runs_api_raw/ (git-ignored,
never uploaded to HF; local evidence archive)
- structured rows appended to runs_v0.jsonl with "interface": "API".
Scoring stays human: output_language is filled by a conservative script
heuristic and notes are filled with factual descriptions (length, opening
line, raw-file pointer). epistemic_frame, anchor_source, register_delta, and
reading are stamped "pending_human_score"; cultural_correctness stays
"pending_native_review". The script never scores a rubric axis.
Keys: read field-by-field from ~/Postman/Github/api_keys.json (fallback:
ANTHROPIC_API_KEY / OPENAI_API_KEY / GEMINI_API_KEY / MOONSHOT_API_KEY env
vars). Keys are never printed and never written into any output file.
Usage:
python3 scripts/run_probes.py --dry-run
python3 scripts/run_probes.py # ilu-002..005, 3 providers
python3 scripts/run_probes.py --providers anthropic,openai,google,moonshot
python3 scripts/run_probes.py --probes ilu-002,ilu-003
"""
from __future__ import annotations
import argparse
import json
import os
import re
import sys
import time
import unicodedata
import urllib.request
from datetime import date, datetime, timezone
from pathlib import Path
REPO = Path(__file__).resolve().parents[1]
PROBE_SET = REPO / "probe_set_v0.jsonl"
RUNS = REPO / "runs_v0.jsonl"
RAW_DIR = REPO / "runs_api_raw"
KEYS_FILE = Path.home() / "Postman" / "Github" / "api_keys.json"
DEFAULT_PROBES = ["ilu-002", "ilu-003", "ilu-004", "ilu-005"]
DEFAULT_PROVIDERS = ["anthropic", "openai", "google"] # moonshot opt-in via --providers
MODEL_IDS = {
"anthropic": "claude-fable-5",
"openai": "gpt-5.6",
"google": "gemini-3.1-pro-preview", # API name for the UI's Gemini 3.1 Pro (bare -pro 404s)
"moonshot": None, # resolved at runtime from /v1/models (kimi 3 naming unverified)
}
ENV_KEYS = {
"anthropic": "ANTHROPIC_API_KEY",
"openai": "OPENAI_API_KEY",
"google": "GEMINI_API_KEY",
"moonshot": "MOONSHOT_API_KEY",
}
MAX_TOKENS = 2048
TIMEOUT_S = 120
# ---------------------------------------------------------------------------
# Keys
# ---------------------------------------------------------------------------
def load_key(provider: str) -> str | None:
"""One provider's key, from api_keys.json field or env var. Never printed."""
if KEYS_FILE.exists():
try:
value = json.load(open(KEYS_FILE)).get(provider)
if value and "PASTE" not in value:
return value
except Exception:
pass
return os.environ.get(ENV_KEYS[provider]) or None
# ---------------------------------------------------------------------------
# Provider calls (plain HTTPS, no SDK dependencies)
# ---------------------------------------------------------------------------
def _post_json(url: str, payload: dict, headers: dict) -> dict:
"""POST with retry: providers intermittently return 401/429/5xx under
bursty sequential calls (observed: OpenAI 401s between successful calls
in the same run). Retries are safe — calls are idempotent reads."""
body = json.dumps(payload).encode("utf-8")
last_err: Exception | None = None
for attempt in range(4):
if attempt:
time.sleep(8 * attempt)
req = urllib.request.Request(url, data=body, method="POST")
req.add_header("Content-Type", "application/json")
for k, v in headers.items():
req.add_header(k, v)
try:
with urllib.request.urlopen(req, timeout=TIMEOUT_S) as resp:
return json.load(resp)
except urllib.error.HTTPError as e:
last_err = e
if e.code not in (401, 408, 429, 500, 502, 503, 529):
raise
except (urllib.error.URLError, TimeoutError) as e:
last_err = e
raise last_err
def _get_json(url: str, headers: dict) -> dict:
req = urllib.request.Request(url, method="GET")
for k, v in headers.items():
req.add_header(k, v)
with urllib.request.urlopen(req, timeout=TIMEOUT_S) as resp:
return json.load(resp)
def call_anthropic(key: str, model: str, prompt: str) -> tuple[str, str, dict]:
raw = _post_json(
"https://api.anthropic.com/v1/messages",
{
"model": model,
"max_tokens": MAX_TOKENS,
"messages": [{"role": "user", "content": prompt}],
},
{"x-api-key": key, "anthropic-version": "2023-06-01"},
)
text = "".join(b.get("text", "") for b in raw.get("content", []) if b.get("type") == "text")
return text, raw.get("model", model), raw
def call_openai_compatible(base: str, key: str, model: str, prompt: str) -> tuple[str, str, dict]:
raw = _post_json(
f"{base}/chat/completions",
{"model": model, "messages": [{"role": "user", "content": prompt}]},
{"Authorization": f"Bearer {key}"},
)
text = raw["choices"][0]["message"]["content"] or ""
return text, raw.get("model", model), raw
def call_google(key: str, model: str, prompt: str) -> tuple[str, str, dict]:
raw = _post_json(
f"https://generativelanguage.googleapis.com/v1beta/models/{model}:generateContent",
{"contents": [{"parts": [{"text": prompt}]}]},
{"x-goog-api-key": key},
)
parts = raw.get("candidates", [{}])[0].get("content", {}).get("parts", [])
text = "".join(p.get("text", "") for p in parts)
return text, raw.get("modelVersion", model), raw
def resolve_moonshot_model(key: str) -> str:
"""Pick the Kimi 3 model id from Moonshot's model list (naming unverified
at authoring time). Prefers ids containing 'k3' or 'kimi-3'; falls back to
the newest kimi id and says so."""
listing = _get_json(
"https://api.moonshot.ai/v1/models", {"Authorization": f"Bearer {key}"}
)
ids = [m.get("id", "") for m in listing.get("data", [])]
for pattern in (r"k3", r"kimi-?3"):
hits = [i for i in ids if re.search(pattern, i, re.I)]
if hits:
return sorted(hits)[-1]
kimi = sorted(i for i in ids if "kimi" in i.lower())
if not kimi:
raise RuntimeError(f"no kimi model found in Moonshot listing ({len(ids)} ids)")
print(f" WARNING: no Kimi-3-looking id; using newest kimi id {kimi[-1]!r}")
return kimi[-1]
def call_provider(provider: str, key: str, model: str, prompt: str) -> tuple[str, str, dict]:
if provider == "anthropic":
return call_anthropic(key, model, prompt)
if provider == "openai":
return call_openai_compatible("https://api.openai.com/v1", key, model, prompt)
if provider == "moonshot":
return call_openai_compatible("https://api.moonshot.ai/v1", key, model, prompt)
if provider == "google":
return call_google(key, model, prompt)
raise ValueError(provider)
# ---------------------------------------------------------------------------
# Output-language heuristic (conservative; everything else is human-scored)
# ---------------------------------------------------------------------------
_IGBO_MARKERS = re.compile(r"[ịọụṅỊỌỤṄ]")
_IGBO_WORDS = {
"na", "bụ", "nke", "ya", "a", "ilu", "ihe", "ndị", "n'ala", "mmadụ",
"igbo", "anyị", "gị", "ha", "dị", "ka", "ma", "ga-", "kwuru", "pụtara",
}
def detect_output_language(text: str) -> str:
"""'ig' / 'en' / 'mixed' via diacritic + stopword density. Conservative:
anything genuinely bilingual lands on 'mixed'."""
if not text.strip():
return "empty"
words = re.findall(r"[^\W\d_]+(?:'[^\W\d_]+)?", unicodedata.normalize("NFC", text.lower()))
if not words:
return "empty"
igbo_hits = sum(1 for w in words if _IGBO_MARKERS.search(w) or w in _IGBO_WORDS)
ratio = igbo_hits / len(words)
if ratio >= 0.35:
return "ig"
if ratio <= 0.05:
return "en"
return "mixed"
def factual_notes(text: str, raw_path: Path) -> str:
"""Short factual description. No rubric judgment."""
words = len(text.split())
opening = " ".join(text.strip().split())[:90]
return (
f"API run, auto-captured. ~{words} words. Opens: \"{opening}...\". "
f"Full raw response: {raw_path.relative_to(REPO)}. "
"Rubric axes pending human score."
)
# ---------------------------------------------------------------------------
# Main
# ---------------------------------------------------------------------------
def main() -> int:
ap = argparse.ArgumentParser(description="IlùBench API evidence runs")
ap.add_argument("--probes", default=",".join(DEFAULT_PROBES))
ap.add_argument("--providers", default=",".join(DEFAULT_PROVIDERS))
ap.add_argument("--dry-run", action="store_true", help="Plan only; no API calls, no writes.")
args = ap.parse_args()
probe_ids = [p.strip() for p in args.probes.split(",") if p.strip()]
providers = [p.strip() for p in args.providers.split(",") if p.strip()]
for p in providers:
if p not in ENV_KEYS:
print(f"ERROR: unknown provider {p!r}")
return 1
probes = {}
for line in open(PROBE_SET, encoding="utf-8"):
d = json.loads(line)
probes[d["id"]] = d
missing = [p for p in probe_ids if p not in probes]
if missing:
print(f"ERROR: probes not in {PROBE_SET.name}: {missing}")
return 1
today = str(date.today())
plan = [(pid, prov) for pid in probe_ids for prov in providers]
print(f"Plan: {len(plan)} probe x provider pairs ({len(plan) * 2} API calls)")
for pid, prov in plan:
print(f" {pid} x {prov} (model: {MODEL_IDS[prov] or 'resolved at runtime'})")
if args.dry_run:
key_status = {p: ("OK" if load_key(p) else "MISSING") for p in providers}
print(f"Key status: {key_status}")
print("Dry run complete. No calls made, nothing written.")
return 0
# Key check upfront so a missing key aborts before any spend.
keys = {}
for p in providers:
k = load_key(p)
if not k:
print(f"ERROR: no key for {p!r} (fill {KEYS_FILE} or set {ENV_KEYS[p]}).")
return 1
keys[p] = k
models = dict(MODEL_IDS)
if "moonshot" in providers:
models["moonshot"] = resolve_moonshot_model(keys["moonshot"])
print(f" moonshot model resolved: {models['moonshot']}")
RAW_DIR.mkdir(exist_ok=True)
(RAW_DIR / ".gitignore").write_text("*\n") # belt: never enters any git repo
new_rows = []
for pid, prov in plan:
probe = probes[pid]
model = models[prov]
arms = {}
reported_model = model
failed = False
for arm_name, prompt_field in (("arm_A", "prompt_en"), ("arm_B", "prompt_ig")):
prompt = probe[prompt_field]
try:
text, reported_model, raw = call_provider(prov, keys[prov], model, prompt)
except Exception as e:
print(f" FAIL {pid} x {prov} {arm_name}: {type(e).__name__}: {e}")
failed = True
break
raw_path = RAW_DIR / f"{today}_{prov}_{pid}_{arm_name}.json"
raw_path.write_text(
json.dumps(
{
"date_utc": datetime.now(timezone.utc).isoformat(),
"provider": prov,
"requested_model": model,
"reported_model": reported_model,
"probe_id": pid,
"arm": arm_name,
"prompt": prompt,
"response_text": text,
"raw_api_response": raw,
},
ensure_ascii=False,
indent=2,
),
encoding="utf-8",
)
arms[arm_name] = {
"output_language": detect_output_language(text),
"epistemic_frame": "pending_human_score",
"anchor_source": "pending_human_score",
"notes": factual_notes(text, raw_path),
}
print(f" ok {pid} x {prov} {arm_name}: {arms[arm_name]['output_language']}")
if failed:
continue
new_rows.append(
{
"run_id": f"run-{today}-api-{prov}-{pid}",
"date": today,
"model": reported_model,
"interface": "API",
"probe_id": pid,
"arm_A": arms["arm_A"],
"arm_B": arms["arm_B"],
"register_delta": "pending_human_score",
"reading": "pending_human_score",
"cultural_correctness": "pending_native_review",
"evidence": f"runs_api_raw/{today}_{prov}_{pid}_*.json (local archive, not uploaded)",
}
)
if new_rows:
with open(RUNS, "a", encoding="utf-8") as f:
for row in new_rows:
f.write(json.dumps(row, ensure_ascii=False) + "\n")
print(f"\nAppended {len(new_rows)} rows to {RUNS.name} "
f"({len(plan) - len(new_rows)} pair(s) failed).")
return 0 if len(new_rows) == len(plan) else 2
if __name__ == "__main__":
sys.exit(main())
|