#[derive(Clone, Debug, PartialEq)]/// Embedding of a document
pubstructEmbedding{/// A unique identifier for the embedding.
pubid: String,
/// The numerical embedding vector of the document's content.
pubembedded_data:Vec<f64>,
/// The raw text data from which the embedding was generated.
pubraw_data: String,
}