ChatCapabilities constructor

const ChatCapabilities({
  1. ChatPromptCapabilities prompt = const ChatPromptCapabilities(image: false, audio: false, embeddedContext: false),
  2. bool attachments = false,
  3. bool tools = false,
  4. bool permissions = false,
  5. bool executionPolicy = false,
  6. bool queue = false,
  7. bool restore = false,
})

Implementation

const ChatCapabilities({
  this.prompt = const ChatPromptCapabilities(
    image: false,
    audio: false,
    embeddedContext: false,
  ),
  this.attachments = false,
  this.tools = false,
  this.permissions = false,
  this.executionPolicy = false,
  this.queue = false,
  this.restore = false,
});