LLMConfig constructor

LLMConfig({
  1. required String baseUrl,
  2. required String apiKey,
  3. required String model,
  4. double temperature = 0.0,
  5. int maxTokens = 4096,
  6. double topP = 1.0,
})

Implementation

LLMConfig({
  required this.baseUrl,
  required this.apiKey,
  required this.model,
  this.temperature = 0.0,
  this.maxTokens = 4096,
  this.topP = 1.0
});