Type Alias: ChatModelFunctionCall
ts
type ChatModelFunctionCall = {
type: "functionCall";
name: string;
description?: string;
params: any;
result: any;
rawCall?: LlamaTextJSON;
startsNewChunk?: boolean;
};Defined in: types.ts:375
Properties
type
ts
type: "functionCall";Defined in: types.ts:376
name
ts
name: string;Defined in: types.ts:377
description?
ts
optional description: string;Defined in: types.ts:378
params
ts
params: any;Defined in: types.ts:379
result
ts
result: any;Defined in: types.ts:380
rawCall?
ts
optional rawCall: LlamaTextJSON;Defined in: types.ts:381
startsNewChunk?
ts
optional startsNewChunk: boolean;Defined in: types.ts:388
Whether this function call starts a new function calling chunk.
Relevant only when parallel function calling is supported.