AIFunction constructor

AIFunction({
  1. required String? name,
  2. String? description,
  3. Map<String, dynamic>? parametersSchema,
  4. Map<String, dynamic>? returnSchema,
  5. bool? isStrict,
})

Creates a new AIFunction.

Implementation

AIFunction({
  required super.name,
  super.description,
  this.parametersSchema,
  this.returnSchema,
  this.isStrict,
});