-
Notifications
You must be signed in to change notification settings - Fork 4
feat: handle ffmpeg-edit output in pollContentRuns #139
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
recoup-coding-agent
wants to merge
1
commit into
main
Choose a base branch
from
feature/rec-68-poll-edit-output
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: recoupable/tasks
Length of output: 99
🏁 Script executed:
Repository: recoupable/tasks
Length of output: 2253
🏁 Script executed:
Repository: recoupable/tasks
Length of output: 1792
🏁 Script executed:
Repository: recoupable/tasks
Length of output: 1374
🏁 Script executed:
Repository: recoupable/tasks
Length of output: 1241
🏁 Script executed:
Repository: recoupable/tasks
Length of output: 477
🏁 Script executed:
Repository: recoupable/tasks
Length of output: 397
🏁 Script executed:
# Check an example Zod schema in the project head -50 src/recoup/fetchTask.tsRepository: recoupable/tasks
Length of output: 1417
🏁 Script executed:
Repository: recoupable/tasks
Length of output: 212
🏁 Script executed:
Repository: recoupable/tasks
Length of output: 4345
🏁 Script executed:
Repository: recoupable/tasks
Length of output: 42
Validate run output with Zod schema and require a URL before returning
completed.Lines 42–47 and 53 use a type assertion on
run.outputwithout schema validation. When bothvideoSourceUrlandurlare absent or null, the code still returnsstatus: "completed"withvideoUrl: undefined, which can misrepresent success to external callbacks.Per coding guidelines, "Use Zod for schema validation" for TypeScript files. Add a Zod schema with a
refine()check to ensure at least one video URL field is present before marking the run as completed.Proposed fix
import { runs } from "@trigger.dev/sdk/v3"; +import { z } from "zod"; import { logStep } from "../sandboxes/logStep"; const POLL_INTERVAL_MS = 30_000; +const ContentRunOutputSchema = z + .object({ + videoSourceUrl: z.string().url().optional(), + /** ffmpeg-edit tasks return `url` instead of `videoSourceUrl`. */ + url: z.string().url().optional(), + captionText: z.string().optional(), + }) + .refine(output => Boolean(output.videoSourceUrl ?? output.url), { + message: "Missing video URL in run output", + }); export type ContentRunResult = { runId: string; status: "completed" | "failed" | "timeout"; videoUrl?: string; captionText?: string; error?: string; }; /** * Waits for all Trigger.dev create-content runs to reach a terminal state * using the native runs.poll() function, then maps results. */ export async function pollContentRuns( runIds: string[], ): Promise<ContentRunResult[]> { const settled = await Promise.allSettled( runIds.map(runId => runs.poll(runId, { pollIntervalMs: POLL_INTERVAL_MS }), ), ); return settled.map((result, i) => { const runId = runIds[i]; if (result.status === "rejected") { logStep(`Run poll failed: ${runId}`, false, { runId, error: result.reason }); return { runId, status: "failed" as const, error: result.reason?.message ?? "Unknown error", }; } const run = result.value; if (run.status === "COMPLETED") { - const output = run.output as { - videoSourceUrl?: string; - captionText?: string; - /** ffmpeg-edit tasks return `url` instead of `videoSourceUrl`. */ - url?: string; - } | null; + const parsedOutput = ContentRunOutputSchema.safeParse(run.output ?? {}); + if (!parsedOutput.success) { + logStep(`Run completed with invalid output: ${runId}`, false, { + runId, + issues: parsedOutput.error.issues, + }); + return { + runId, + status: "failed" as const, + error: "Completed run missing valid output URL", + }; + } + const output = parsedOutput.data; logStep(`Run completed: ${runId}`, false, { runId }); return { runId, status: "completed" as const, - videoUrl: output?.videoSourceUrl ?? output?.url, - captionText: output?.captionText, + videoUrl: output.videoSourceUrl ?? output.url, + captionText: output.captionText, }; }📝 Committable suggestion
🤖 Prompt for AI Agents