ParamsChatBot constructor

const ParamsChatBot({
  1. String domain = "api.openai.com",
  2. String endPoint = "/v1/chat/completions",
  3. String modelGpt = "gpt-3.5-turbo",
  4. int maxToken = 150,
  5. FormatDataUtil formatDataUtil = const FormatDataUtil(),
})

Implementation

const ParamsChatBot({
  this.domain = "api.openai.com",
  this.endPoint = "/v1/chat/completions",
  this.modelGpt = "gpt-3.5-turbo",
  this.maxToken = 150,
  this.formatDataUtil = const FormatDataUtil(),
});