pub struct CharacterCard {
pub spec: String,
pub spec_version: String,
pub data: CharacterData,
}Expand description
Character card following the v2 specification
Fields§
§spec: String§spec_version: String§data: CharacterDataImplementations§
Source§impl CharacterCard
impl CharacterCard
Sourcepub fn build_system_prompt_with_substitutions(
&self,
user_name: Option<&str>,
char_name: Option<&str>,
) -> String
pub fn build_system_prompt_with_substitutions( &self, user_name: Option<&str>, char_name: Option<&str>, ) -> String
Build the system prompt from character data with persona/character substitutions
Trait Implementations§
Source§impl Clone for CharacterCard
impl Clone for CharacterCard
Source§fn clone(&self) -> CharacterCard
fn clone(&self) -> CharacterCard
Returns a duplicate 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 Debug for CharacterCard
impl Debug for CharacterCard
Source§impl<'de> Deserialize<'de> for CharacterCard
impl<'de> Deserialize<'de> for CharacterCard
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CharacterCard
impl PartialEq for CharacterCard
Source§impl Serialize for CharacterCard
impl Serialize for CharacterCard
impl StructuralPartialEq for CharacterCard
Auto Trait Implementations§
impl Freeze for CharacterCard
impl RefUnwindSafe for CharacterCard
impl Send for CharacterCard
impl Sync for CharacterCard
impl Unpin for CharacterCard
impl UnsafeUnpin for CharacterCard
impl UnwindSafe for CharacterCard
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more