pub struct StaticFragment<'a>(/* private fields */);Expand description
A borrowed static string bundled with an LLM chat role.
The tuple struct keeps the footprint at exactly two machine words
(&str + GenericRole) while still offering ergonomic constructors.
Implementations§
Source§impl<'a> StaticFragment<'a>
impl<'a> StaticFragment<'a>
Sourcepub fn new(value: &'a str, role: GenericRole) -> Self
pub fn new(value: &'a str, role: GenericRole) -> Self
Create a new fragment with explicit role.
Trait Implementations§
Source§impl<'a> From<&'a str> for StaticFragment<'a>
Shorthand so you can write StaticFragment::from("…") without specifying
the role each time. Defaults to system.
impl<'a> From<&'a str> for StaticFragment<'a>
Shorthand so you can write StaticFragment::from("…") without specifying
the role each time. Defaults to system.
Source§impl IntoPrompt for StaticFragment<'_>
impl IntoPrompt for StaticFragment<'_>
Source§type Message = GenericMessage
type Message = GenericMessage
Chat message representation emitted by the prompt.
Source§fn into_prompt(self) -> Vec<Self::Message>
fn into_prompt(self) -> Vec<Self::Message>
Consume
self and return all messages in the desired order.