/// Text returned by an AI backend.
#[derive(Debug, Clone)]pubstructGenerateResponse{/// Generated text content.
pubtext: String,
}implGenerateResponse{/// Creates a new response with the given text.
pubfnnew(text: impl Into<String>)->Self{Self{ text: text.into()}}}