usecrate::chat::ModelMemory;useserde::{Deserialize, Serialize};/// The struct which contains the options and the memory for the model.
#[derive(Deserialize, Serialize)]pubstructModelOptions{pubmessages: ModelMemory,
pubtemperature:f32,
pubtop_p:f32,
pubtop_k:i32,
pubmodel: String,
pubstream:bool,
}