Variable file_system_functionsConst

file_system_functions: (
    | {
        description: string;
        enabled: boolean;
        fn: ((ops: any) => Promise<string>);
        name: string;
        parameters: {
            content?: undefined;
            path: string;
        };
        return_type: string;
    }
    | {
        description: string;
        enabled: boolean;
        fn: ((ops: any) => Promise<string>);
        name: string;
        parameters: {
            content: string;
            path: string;
        };
        return_type: string;
    }
    | {
        description: string;
        enabled: boolean;
        fn: ((ops: any) => Promise<{
            name: string;
            path: string;
            type: string;
        }[]>);
        name: string;
        parameters: {
            content?: undefined;
            path: string;
        };
        return_type: string;
    }
    | {
        description: string;
        enabled: boolean;
        fn: ((ops: any) => Promise<boolean>);
        name: string;
        parameters: {
            content?: undefined;
            path: string;
        };
        return_type: string;
    }
    | {
        description: string;
        enabled: boolean;
        fn: ((ops: any) => Promise<{
            created: string;
            modified: string;
            size: number;
            type: string;
        }>);
        name: string;
        parameters: {
            content?: undefined;
            path: string;
        };
        return_type: string;
    })[] = ...