HubAiConfig constructor

const HubAiConfig({
  1. required bool available,
  2. String? provider,
  3. String? model,
  4. String? plannerModel,
  5. String? executorModel,
  6. String? explainerModel,
  7. String? baseUrl,
  8. String? mode,
  9. String? language,
})

Creates a Hub AI config snapshot.

Implementation

const HubAiConfig({
  required this.available,
  this.provider,
  this.model,
  this.plannerModel,
  this.executorModel,
  this.explainerModel,
  this.baseUrl,
  this.mode,
  this.language,
});