pub trait VisionPromptPrefixer: Send + Sync {
// Required method
fn prefix_image(&self, image_index: usize, prompt: &str) -> String;
}
Expand description
Prepend a vision tag appropriate for the model to the prompt. Image indexing is assumed that start at
Required Methods§
sourcefn prefix_image(&self, image_index: usize, prompt: &str) -> String
fn prefix_image(&self, image_index: usize, prompt: &str) -> String
Prefix for inclusion in messages (may do nothing if the chat template handles it).