mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-02-21 01:44:09 +01:00
Some checks failed
Docker Dev Branch Images Build / build (Dockerfile, lc-dev, node) (push) Waiting to run
Docker Dev Branch Images Build / build (Dockerfile.multi, lc-dev-api, api-build) (push) Waiting to run
Docker Dev Images Build / build (Dockerfile, librechat-dev, node) (push) Has been cancelled
Docker Dev Images Build / build (Dockerfile.multi, librechat-dev-api, api-build) (push) Has been cancelled
Sync Locize Translations & Create Translation PR / Sync Translation Keys with Locize (push) Has been cancelled
Sync Locize Translations & Create Translation PR / Create Translation PR on Version Published (push) Has been cancelled
* fix: change google multimodal attachments to use type: 'media' * chore: Update @librechat/agents to version 3.0.27 in package.json and package-lock.json --------- Co-authored-by: Danny Avila <danny@librechat.ai>
88 lines
2.7 KiB
TypeScript
88 lines
2.7 KiB
TypeScript
import { Providers } from '@librechat/agents';
|
|
import { isDocumentSupportedProvider } from 'librechat-data-provider';
|
|
import type { IMongoFile } from '@librechat/data-schemas';
|
|
import type { ServerRequest, StrategyFunctions, VideoResult } from '~/types';
|
|
import { getFileStream, getConfiguredFileSizeLimit } from './utils';
|
|
import { validateVideo } from '~/files/validation';
|
|
|
|
/**
|
|
* Encodes and formats video files for different providers
|
|
* @param req - The request object
|
|
* @param files - Array of video files
|
|
* @param params - Object containing provider and optional endpoint
|
|
* @param params.provider - The provider to format for
|
|
* @param params.endpoint - Optional endpoint name for file config lookup
|
|
* @param getStrategyFunctions - Function to get strategy functions
|
|
* @returns Promise that resolves to videos and file metadata
|
|
*/
|
|
export async function encodeAndFormatVideos(
|
|
req: ServerRequest,
|
|
files: IMongoFile[],
|
|
params: { provider: Providers; endpoint?: string },
|
|
getStrategyFunctions: (source: string) => StrategyFunctions,
|
|
): Promise<VideoResult> {
|
|
const { provider, endpoint } = params;
|
|
if (!files?.length) {
|
|
return { videos: [], files: [] };
|
|
}
|
|
|
|
const encodingMethods: Record<string, StrategyFunctions> = {};
|
|
const result: VideoResult = { videos: [], files: [] };
|
|
|
|
const results = await Promise.allSettled(
|
|
files.map((file) => getFileStream(req, file, encodingMethods, getStrategyFunctions)),
|
|
);
|
|
|
|
for (const settledResult of results) {
|
|
if (settledResult.status === 'rejected') {
|
|
console.error('Video processing failed:', settledResult.reason);
|
|
continue;
|
|
}
|
|
|
|
const processed = settledResult.value;
|
|
if (!processed) continue;
|
|
|
|
const { file, content, metadata } = processed;
|
|
|
|
if (!content || !file) {
|
|
if (metadata) result.files.push(metadata);
|
|
continue;
|
|
}
|
|
|
|
if (!file.type.startsWith('video/') || !isDocumentSupportedProvider(provider)) {
|
|
result.files.push(metadata);
|
|
continue;
|
|
}
|
|
|
|
const videoBuffer = Buffer.from(content, 'base64');
|
|
|
|
/** Extract configured file size limit from fileConfig for this endpoint */
|
|
const configuredFileSizeLimit = getConfiguredFileSizeLimit(req, {
|
|
provider,
|
|
endpoint,
|
|
});
|
|
|
|
const validation = await validateVideo(
|
|
videoBuffer,
|
|
videoBuffer.length,
|
|
provider,
|
|
configuredFileSizeLimit,
|
|
);
|
|
|
|
if (!validation.isValid) {
|
|
throw new Error(`Video validation failed: ${validation.error}`);
|
|
}
|
|
|
|
if (provider === Providers.GOOGLE || provider === Providers.VERTEXAI) {
|
|
result.videos.push({
|
|
type: 'media',
|
|
mimeType: file.type,
|
|
data: content,
|
|
});
|
|
}
|
|
|
|
result.files.push(metadata);
|
|
}
|
|
|
|
return result;
|
|
}
|