postio / apps /backend /dist /libraries /nestjs-libraries /src /chat /tools /video.function.tool.d.ts
Leon4gr45's picture
Upload folder using huggingface_hub (part 2)
fee1116 verified
Raw
History Blame Contribute Delete
656 Bytes
import { AgentToolInterface } from "../agent.tool.interface";
import { VideoManager } from "../../videos/video.manager";
import { ModuleRef } from '@nestjs/core';
export declare class VideoFunctionTool implements AgentToolInterface {
private _videoManagerService;
private _moduleRef;
constructor(_videoManagerService: VideoManager, _moduleRef: ModuleRef);
name: string;
run(): import("@mastra/core/tools").Tool<InferPublicSchema<T>, InferPublicSchema<T>, InferPublicSchema<T>, InferPublicSchema<T>, import("@mastra/core/tools").ToolExecutionContext<InferPublicSchema<T>, InferPublicSchema<T>, unknown>, "videoFunctionTool", unknown>;
}