Skip to content

Type Alias: LlamaChatSessionContextShiftOptions

ts
type LlamaChatSessionContextShiftOptions = {
  size: LLamaChatContextShiftOptions["size"];
  strategy: LLamaChatContextShiftOptions["strategy"];
};

Defined in: evaluator/LlamaChatSession/LlamaChatSession.ts:49

Type declaration

size?

ts
optional size: LLamaChatContextShiftOptions["size"];

The number of tokens to delete from the context window to make space for new ones. Defaults to 10% of the context size.

strategy?

ts
optional strategy: LLamaChatContextShiftOptions["strategy"];

The strategy to use when deleting tokens from the context window.

Defaults to "eraseFirstResponseAndKeepFirstSystem".