pub trait VisionPromptPrefixer: Send + Sync {
// Required method
fn prefix_image(&self, image_indees: Vec<usize>, prompt: &str) -> String;
}
Expand description
Prepend a vision tag appropriate for the model to the prompt. Image indexing is assumed that start at 0.