Type alias FunctionCallMessage

FunctionCallMessage: Message & {
    content: null;
    functionCall: {
        arguments: Record<string, any>;
        name: string;
    };
    role: "assistant";
}

Type declaration

  • content: null
  • functionCall: {
        arguments: Record<string, any>;
        name: string;
    }
    • arguments: Record<string, any>
    • name: string
  • role: "assistant"

Generated using TypeDoc