diegosouzapw/OmniRoute · error · VeoArtifactError

VIDEO_ARTIFACT_NOT_READY

VIDEO_ARTIFACT_NOT_READY

Error message

Video artifact is not available yet

What it means

Error "Video artifact is not available yet" thrown in diegosouzapw/OmniRoute.

Source

Thrown at open-sse/executors/veoaifree-web.ts:555

          "VIDEO_ARTIFACT_DOWNLOAD_FAILED",
          "Video artifact exceeded the redirect limit",
          502
        );
      }
      try {
        currentUrl = new URL(location, parsedUrl.toString()).toString();
      } catch {
        throw new VeoArtifactError(
          "VIDEO_ARTIFACT_URL_INVALID",
          "Video artifact redirect destination is invalid",
          502
        );
      }
      continue;
    }

    if (RETRYABLE_ARTIFACT_STATUSES.has(response.status)) {
      throw new VeoArtifactError(
        response.status === 202 ? "VIDEO_ARTIFACT_NOT_READY" : "VIDEO_ARTIFACT_UNAVAILABLE",
        "Video artifact is not available yet",
        502,
        { retryable: true }
      );
    }

    if (!response.ok) {
      throw new VeoArtifactError(
        "VIDEO_ARTIFACT_DOWNLOAD_FAILED",
        `Video artifact download failed (${response.status})`,
        502
      );
    }

    const contentType = (response.headers.get("content-type") || "")
      .split(";")[0]
      .trim()

View on GitHub (pinned to a179ffed5b)

When it happens

Trigger: Thrown at open-sse/executors/veoaifree-web.ts:555 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of diegosouzapw/OmniRoute@a179ffed5b (2026-08-25). Data as JSON: /api/errors/09c836eef2516064. Report an issue: GitHub.