Type Alias: BatchItem
ts
type BatchItem = {
tokens: readonly Token[];
logits: readonly (true | undefined)[];
evaluationPriority: EvaluationPriority;
};Defined in: evaluator/LlamaContext/types.ts:503
Properties
tokens
ts
readonly tokens: readonly Token[];Defined in: evaluator/LlamaContext/types.ts:504
logits
ts
readonly logits: readonly (true | undefined)[];Defined in: evaluator/LlamaContext/types.ts:505
evaluationPriority
ts
readonly evaluationPriority: EvaluationPriority;Defined in: evaluator/LlamaContext/types.ts:506