First upload version 0.0.1
This commit is contained in:
15
node_modules/node-llama-cpp/dist/utils/gbnfJson/terminals/GbnfRepetition.d.ts
generated
vendored
Normal file
15
node_modules/node-llama-cpp/dist/utils/gbnfJson/terminals/GbnfRepetition.d.ts
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
import { GbnfTerminal } from "../GbnfTerminal.js";
|
||||
import { GbnfGrammarGenerator } from "../GbnfGrammarGenerator.js";
|
||||
export declare class GbnfRepetition extends GbnfTerminal {
|
||||
readonly value: GbnfTerminal;
|
||||
readonly separator?: GbnfTerminal;
|
||||
readonly minRepetitions: number;
|
||||
readonly maxRepetitions: number | null;
|
||||
constructor({ value, separator, minRepetitions, maxRepetitions }: {
|
||||
value: GbnfTerminal;
|
||||
separator?: GbnfTerminal;
|
||||
minRepetitions?: number;
|
||||
maxRepetitions?: number | null;
|
||||
});
|
||||
getGrammar(grammarGenerator: GbnfGrammarGenerator): string;
|
||||
}
|
||||
Reference in New Issue
Block a user