Skip to content

Type Alias: ChatModelResponse

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

Type declaration

type

ts
type: "model";

response

ts
response: (string | ChatModelFunctionCall)[];

Defined in

types.ts:121