AskMentorRequest constructor

AskMentorRequest({
  1. String? prompt,
  2. String? name,
  3. String? org,
  4. Object? mentorFlow,
  5. String? sessionId,
  6. String llmProvider = 'google',
  7. bool returnResources = false,
})

Returns a new AskMentorRequest instance.

Implementation

AskMentorRequest({
  this.prompt,
  this.name,
  this.org,
  this.mentorFlow,
  this.sessionId,
  this.llmProvider = 'google',
  this.returnResources = false,
});