From 19fea686c7b8f0fe06e13dabe92b9703cfe375d9 Mon Sep 17 00:00:00 2001 From: wassname <1103714+wassname@users.noreply.github.com> Date: Thu, 17 Sep 2026 19:20:51 +0800 Subject: [PATCH] Smoke corrected WVS provider policy Co-Authored-By: PI[gpt-5.6-terra] <288921227+claudypoo@users.noreply.github.com> --- scripts/wvs_score_all_options_refresh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/wvs_score_all_options_refresh.py b/scripts/wvs_score_all_options_refresh.py index b8e0564..6d6b9d0 100644 --- a/scripts/wvs_score_all_options_refresh.py +++ b/scripts/wvs_score_all_options_refresh.py @@ -216,7 +216,7 @@ def main() -> None: runnable = [row for row in rows if row["status"] == "runnable"] assert all(row["calls"] == 144 for row in runnable) assert all(row["provider"] == OSS_PROVIDER for row in runnable if row["lane"] in {"muse", "kimi", "glm", "deepseek", "qwen"} or row["id"].startswith("openai/gpt-oss-")) - assert all(row["provider"] is None for row in runnable if row["lane"] in {"openai", "google", "xai"}) + assert all(row["provider"] is None for row in runnable if row["lane"] in {"google", "xai"} or (row["lane"] == "openai" and not row["id"].startswith("openai/gpt-oss-"))) print(f"smoke: {len(runnable)} score-all-options panels, {len(LANES)} provider lanes, concurrency <= 8") if args.queue: queue(rows)