pub trait ResponseContent {
// Required method
fn content(&self) -> String;
}Expand description
A trait for extracting the content from a language model’s response.
pub trait ResponseContent {
// Required method
fn content(&self) -> String;
}A trait for extracting the content from a language model’s response.