Type Alias: ChatWrapperGeneratedContextState
ts
type ChatWrapperGeneratedContextState = {
contextText: LlamaText;
stopGenerationTriggers: LlamaText[];
ignoreStartText: LlamaText[];
functionCall: {
initiallyEngaged: boolean;
disengageInitiallyEngaged: LlamaText[];
};
};
Defined in: types.ts:127
Properties
contextText
ts
contextText: LlamaText;
Defined in: types.ts:128
stopGenerationTriggers
ts
stopGenerationTriggers: LlamaText[];
Defined in: types.ts:129
ignoreStartText?
ts
optional ignoreStartText: LlamaText[];
Defined in: types.ts:130
functionCall?
ts
optional functionCall: {
initiallyEngaged: boolean;
disengageInitiallyEngaged: LlamaText[];
};
Defined in: types.ts:131
initiallyEngaged
ts
initiallyEngaged: boolean;
disengageInitiallyEngaged
ts
disengageInitiallyEngaged: LlamaText[];