import { test } from "@playwright/test";

/**
 * Isolated from heuristic E2E. Default suite: NOT TESTED.
 * Enable only when the server has a live model and LIVE_CHAT_MODEL=1
 * (do not use DISABLE_CHAT_MODEL=1).
 */
const live = process.env.LIVE_CHAT_MODEL === "1";

test.describe("live GPT rubric (Phase 4)", () => {
  test.skip(!live, "NOT TESTED: live-model wording. See test/live-gpt/RUBRIC.md");

  test("placeholder — add scored live cases in Phase 4", async () => {
    test.info().annotations.push({ type: "layer", description: "live-gpt" });
  });
});
