Embedding constructor

Embedding({
  1. required List<double> vector,
  2. DateTime? createdAt,
  3. String? modelId,
  4. AdditionalPropertiesDictionary? additionalProperties,
})

Creates a new Embedding.

Implementation

Embedding({
  required this.vector,
  this.createdAt,
  this.modelId,
  this.additionalProperties,
});