Type Alias: LlamaChatOptions
ts
type LlamaChatOptions: {
contextSequence: LlamaContextSequence;
chatWrapper: "auto" | ChatWrapper;
autoDisposeSequence: boolean;
};
Type declaration
contextSequence
ts
contextSequence: LlamaContextSequence;
chatWrapper?
ts
optional chatWrapper: "auto" | ChatWrapper;
"auto"
is used by default
autoDisposeSequence?
ts
optional autoDisposeSequence: boolean;
Automatically dispose the sequence when the session is disposed
Defaults to false
.