First upload version 0.0.1

This commit is contained in:
Neyra
2026-02-05 15:27:49 +08:00
commit 8e9b7201ed
4182 changed files with 593136 additions and 0 deletions

10
node_modules/node-llama-cpp/dist/utils/cmake.d.ts generated vendored Normal file
View File

@@ -0,0 +1,10 @@
export declare function hasBuiltinCmake(): Promise<boolean>;
export declare function getCmakePath(): Promise<string>;
export declare function downloadCmakeIfNeeded(wrapWithStatusLogs?: boolean): Promise<void>;
export declare function clearLocalCmake(): Promise<void>;
/**
* There's an issue where after a compilation, the cmake binaries have permissions that don't allow them to be deleted.
* This function fixes that.
* It should be run after each compilation.
*/
export declare function fixXpackPermissions(): Promise<void>;