Type Alias: ChatSystemMessage
ts
type ChatSystemMessage = {
type: "system";
text: string | LlamaTextJSON;
};
Defined in: types.ts:113
Type declaration
type
ts
type: "system";
text
ts
text: string | LlamaTextJSON;