Type alias AIConversationParams

AIConversationParams: AIConversationFunctionCallParams | AIConversationFunctionCallOutputParams | {
    type: string;
    [key: string]: unknown;
}

Generic params for any ai_conversation message. Can be a function_call (inbound) or function_call_output (outbound), as well as other ai_conversation message types (transcript, etc.).

Type declaration

  • [key: string]: unknown
  • type: string