UNPKG

node-llama-cpp

Version:

Run AI models locally on your machine with node.js bindings for llama.cpp. Enforce a JSON schema on the model output on the generation level

12 lines 371 B
export class LlamaFunctionCallValidationError extends Error { functions; chatWrapper; callText; constructor(message, functions, chatWrapper, callText) { super(message); this.functions = functions; this.chatWrapper = chatWrapper; this.callText = callText; } } //# sourceMappingURL=LlamaFunctionCallValidationError.js.map