create abstract method

Future<AIResponse> create({
  1. String model = 'text-davinci-003',
  2. dynamic prompt,
  3. int? maxTokens = 200,
  4. double? temperature,
  5. double? topP,
  6. int? n,
  7. int? logprobs,
  8. bool? echo,
  9. String? stop,
  10. int? bestOf,
  11. String? user,
  12. String? suffix,
})

Implementation

Future<AIResponse> create(
    {String model = 'text-davinci-003',
    dynamic prompt,
    int? maxTokens = 200,
    double? temperature,
    double? topP,
    int? n,
    int? logprobs,
    bool? echo,
    String? stop,
    int? bestOf,
    String? user,
    String? suffix});