pub struct SystemMessagePromptTemplate { /* private fields */ }Expand description
A template for creating system messages.
Implementations§
source§impl SystemMessagePromptTemplate
impl SystemMessagePromptTemplate
pub fn new(prompt: PromptTemplate) -> Self
Trait Implementations§
source§impl Clone for SystemMessagePromptTemplate
impl Clone for SystemMessagePromptTemplate
source§fn clone(&self) -> SystemMessagePromptTemplate
fn clone(&self) -> SystemMessagePromptTemplate
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 SystemMessagePromptTemplate
impl FormatPrompter for SystemMessagePromptTemplate
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 SystemMessagePromptTemplate
impl Into<Box<dyn MessageFormatter>> for SystemMessagePromptTemplate
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 SystemMessagePromptTemplate
impl MessageFormatter for SystemMessagePromptTemplate
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 SystemMessagePromptTemplate
impl Send for SystemMessagePromptTemplate
impl Sync for SystemMessagePromptTemplate
impl Unpin for SystemMessagePromptTemplate
impl UnwindSafe for SystemMessagePromptTemplate
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