MCPcopy Create free account
hub / github.com/TeleBoxOrg/TeleBox_Plugins / buildDoubaoVideoUrl

Function buildDoubaoVideoUrl

ai/ai.ts:2247–2257  ·  view source on GitHub ↗
(data: any)

Source from the content-addressed store, hash-verified

2245
2246const buildDoubaoVideoUrl = (data: any): string | null => {
2247 return (
2248 data?.data?.result?.video_url ||
2249 data?.data?.output?.video_url ||
2250 data?.data?.video_url ||
2251 data?.video_url ||
2252 data?.content?.video_url ||
2253 data?.data?.content?.video_url ||
2254 null
2255 );
2256};
2257
2258const buildGeminiVideoApiUrl = (
2259 baseUrl: string,
2260 model: string,

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected