pub struct SystemMessagePromptTemplate { /* private fields */ }
Expand description
Struct SystemMessagePromptTemplate
defines a template for creating system-level messages.
PromptTemplate
is used to generate the message template.
§Usage
ⓘ
let system_message_prompt = SystemMessagePromptTemplate::new(template_fstring!(
"System alert: {alert_type} {alert_detail}",
"alert_type",
"alert_detail"
));
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, PromptError>
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>, PromptError>
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 Freeze for SystemMessagePromptTemplate
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