pub enum TransferModeTrue {
RollingHistory,
SwapSystemMessageInHistory,
SwapSystemMessageInHistoryAndRemoveTransferToolMessages,
DeleteHistory,
}Expand description
This is the mode to use for the transfer. Defaults to rolling-history. - rolling-history: This is the default mode. It keeps the entire conversation history and appends the new assistant’s system message on transfer. Example: Pre-transfer: system: assistant1 system message assistant: assistant1 first message user: hey, good morning assistant: how can i help? user: i need help with my account assistant: (destination.message) Post-transfer: system: assistant1 system message assistant: assistant1 first message user: hey, good morning assistant: how can i help? user: i need help with my account assistant: (destination.message) system: assistant2 system message assistant: assistant2 first message (or model generated if firstMessageMode is set to assistant-speaks-first-with-model-generated-message) - swap-system-message-in-history: This replaces the original system message with the new assistant’s system message on transfer. Example: Pre-transfer: system: assistant1 system message assistant: assistant1 first message user: hey, good morning assistant: how can i help? user: i need help with my account assistant: (destination.message) Post-transfer: system: assistant2 system message assistant: assistant1 first message user: hey, good morning assistant: how can i help? user: i need help with my account assistant: (destination.message) assistant: assistant2 first message (or model generated if firstMessageMode is set to assistant-speaks-first-with-model-generated-message) - delete-history: This deletes the entire conversation history on transfer. Example: Pre-transfer: system: assistant1 system message assistant: assistant1 first message user: hey, good morning assistant: how can i help? user: i need help with my account assistant: (destination.message) Post-transfer: system: assistant2 system message assistant: assistant2 first message user: Yes, please assistant: how can i help? user: i need help with my account - swap-system-message-in-history-and-remove-transfer-tool-messages: This replaces the original system message with the new assistant’s system message on transfer and removes transfer tool messages from conversation history sent to the LLM. Example: Pre-transfer: system: assistant1 system message assistant: assistant1 first message user: hey, good morning assistant: how can i help? user: i need help with my account transfer-tool transfer-tool-result assistant: (destination.message) Post-transfer: system: assistant2 system message assistant: assistant1 first message user: hey, good morning assistant: how can i help? user: i need help with my account assistant: (destination.message) assistant: assistant2 first message (or model generated if firstMessageMode is set to assistant-speaks-first-with-model-generated-message) @default ‘rolling-history’
Variants§
RollingHistory
SwapSystemMessageInHistory
SwapSystemMessageInHistoryAndRemoveTransferToolMessages
DeleteHistory
Trait Implementations§
Source§impl Clone for TransferModeTrue
impl Clone for TransferModeTrue
Source§fn clone(&self) -> TransferModeTrue
fn clone(&self) -> TransferModeTrue
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for TransferModeTrue
impl Debug for TransferModeTrue
Source§impl Default for TransferModeTrue
impl Default for TransferModeTrue
Source§fn default() -> TransferModeTrue
fn default() -> TransferModeTrue
Source§impl<'de> Deserialize<'de> for TransferModeTrue
impl<'de> Deserialize<'de> for TransferModeTrue
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>,
Source§impl Hash for TransferModeTrue
impl Hash for TransferModeTrue
Source§impl Ord for TransferModeTrue
impl Ord for TransferModeTrue
Source§fn cmp(&self, other: &TransferModeTrue) -> Ordering
fn cmp(&self, other: &TransferModeTrue) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for TransferModeTrue
impl PartialEq for TransferModeTrue
Source§fn eq(&self, other: &TransferModeTrue) -> bool
fn eq(&self, other: &TransferModeTrue) -> bool
self and other values to be equal, and is used by ==.