// The Input struct represents a single input message or text
// for embedding.
// It is used to encapsulate the content that will be processed
// by the embedding API.
use crate*;
// A message or text to be embedded
/*
The reason for making it a struct, is to make extending it
later on much easier
*/