@juspay/neurolink
Version:
Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio
27 lines (26 loc) • 840 B
TypeScript
/**
* Video Analysis Handler
*
* Provides video analysis using Google's Gemini 2.5 Flash model.
* Supports both Vertex AI and Gemini API providers.
*
* @module adapters/video/geminiVideoAnalyzer
*/
import { AIProviderName } from "../../constants/enums.js";
import type { ModelMessage } from "ai";
export declare function analyzeVideoWithVertexAI(messages: ModelMessage[], options?: {
project?: string;
location?: string;
model?: string;
}): Promise<string>;
export declare function analyzeVideoWithGeminiAPI(messages: ModelMessage[], options?: {
apiKey?: string;
model?: string;
}): Promise<string>;
export declare function analyzeVideo(messages: ModelMessage[], options?: {
provider?: AIProviderName;
project?: string;
location?: string;
apiKey?: string;
model?: string;
}): Promise<string>;