Files
openclaw/src/video-generation/model-ref.ts
2026-04-08 09:58:22 +01:00

8 lines
239 B
TypeScript

import { parseGenerationModelRef } from "../media-generation/model-ref.js";
export function parseVideoGenerationModelRef(
raw: string | undefined,
): { provider: string; model: string } | null {
return parseGenerationModelRef(raw);
}