NewChatThread constructor

const NewChatThread({
  1. Key? key,
  2. required RoomClient room,
  3. required String agentName,
  4. required NewChatThreadBuilder builder,
  5. String toolkit = "chat",
  6. String tool = "new_thread",
  7. NewChatThreadToolsBuilder? toolsBuilder,
  8. ValueChanged<String?>? onThreadPathChanged,
})

Implementation

const NewChatThread({
  super.key,
  required this.room,
  required this.agentName,
  required this.builder,
  this.toolkit = "chat",
  this.tool = "new_thread",
  this.toolsBuilder,
  this.onThreadPathChanged,
});