mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-17 08:10:47 +00:00
8 lines
239 B
TypeScript
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);
|
|
}
|