Skip to content

Type Alias: ChatModelResponse

ts
type ChatModelResponse = {
  type: "model";
  response: (string | ChatModelFunctionCall)[];
};

Defined in: types.ts:121

Type declaration

type

ts
type: "model";

response

ts
response: (string | ChatModelFunctionCall)[];