Struct langchain_rust::prompt::HumanMessagePromptTemplate
source · pub struct HumanMessagePromptTemplate { /* private fields */ }
Expand description
A template for creating human-readable messages.
Implementations§
source§impl HumanMessagePromptTemplate
impl HumanMessagePromptTemplate
pub fn new(prompt: PromptTemplate) -> Self
Trait Implementations§
source§impl Clone for HumanMessagePromptTemplate
impl Clone for HumanMessagePromptTemplate
source§fn clone(&self) -> HumanMessagePromptTemplate
fn clone(&self) -> HumanMessagePromptTemplate
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl FormatPrompter for HumanMessagePromptTemplate
impl FormatPrompter for HumanMessagePromptTemplate
fn format_prompt( &self, input_variables: PromptArgs ) -> Result<PromptValue, Box<dyn Error>>
fn get_input_variables(&self) -> Vec<String>
source§impl Into<Box<dyn MessageFormatter>> for HumanMessagePromptTemplate
impl Into<Box<dyn MessageFormatter>> for HumanMessagePromptTemplate
source§fn into(self) -> Box<dyn MessageFormatter>
fn into(self) -> Box<dyn MessageFormatter>
Converts this type into the (usually inferred) input type.
source§impl MessageFormatter for HumanMessagePromptTemplate
impl MessageFormatter for HumanMessagePromptTemplate
fn format_messages( &self, input_variables: PromptArgs ) -> Result<Vec<Message>, Box<dyn Error>>
source§fn input_variables(&self) -> Vec<String>
fn input_variables(&self) -> Vec<String>
Returns a list of required input variable names for the template.
Auto Trait Implementations§
impl RefUnwindSafe for HumanMessagePromptTemplate
impl Send for HumanMessagePromptTemplate
impl Sync for HumanMessagePromptTemplate
impl Unpin for HumanMessagePromptTemplate
impl UnwindSafe for HumanMessagePromptTemplate
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more