First upload version 0.0.1
This commit is contained in:
16
node_modules/node-llama-cpp/dist/chatWrappers/Llama3ChatWrapper.d.ts
generated
vendored
Normal file
16
node_modules/node-llama-cpp/dist/chatWrappers/Llama3ChatWrapper.d.ts
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
import { ChatWrapper } from "../ChatWrapper.js";
|
||||
import { ChatModelFunctions, ChatWrapperGenerateContextStateOptions, ChatWrapperGeneratedContextState, ChatWrapperSettings } from "../types.js";
|
||||
export declare class Llama3ChatWrapper extends ChatWrapper {
|
||||
readonly wrapperName: string;
|
||||
readonly settings: ChatWrapperSettings;
|
||||
constructor({ parallelFunctionCalling }?: {
|
||||
/**
|
||||
* Defaults to `true`
|
||||
*/
|
||||
parallelFunctionCalling?: boolean;
|
||||
});
|
||||
generateContextState({ chatHistory, availableFunctions, documentFunctionParams }: ChatWrapperGenerateContextStateOptions): ChatWrapperGeneratedContextState;
|
||||
generateAvailableFunctionsSystemText(availableFunctions: ChatModelFunctions, { documentParams }: {
|
||||
documentParams?: boolean;
|
||||
}): import("../utils/LlamaText.js")._LlamaText;
|
||||
}
|
||||
Reference in New Issue
Block a user