FluenticConfig constructor

FluenticConfig({
  1. required String apiKey,
  2. String model = "gpt-3.5-turbo-1106",
  3. String baseUrl = "https://api.openai.com/v1",
  4. String? defaultSystemPrompt,
})

Implementation

FluenticConfig({
  required this.apiKey,
  this.model = "gpt-3.5-turbo-1106",
  this.baseUrl = "https://api.openai.com/v1",
  this.defaultSystemPrompt, // Can be null
});