pub enum ConversationNodeModel {
WorkflowOpenAiModel(WorkflowOpenAiModel),
WorkflowAnthropicModel(WorkflowAnthropicModel),
WorkflowGoogleModel(WorkflowGoogleModel),
WorkflowCustomModel(WorkflowCustomModel),
}
Expand description
ConversationNodeModel : This is the model for the node. This overrides workflow.model
.
This is the model for the node. This overrides workflow.model
.
Variants§
WorkflowOpenAiModel(WorkflowOpenAiModel)
WorkflowAnthropicModel(WorkflowAnthropicModel)
WorkflowGoogleModel(WorkflowGoogleModel)
WorkflowCustomModel(WorkflowCustomModel)
Trait Implementations§
Source§impl Clone for ConversationNodeModel
impl Clone for ConversationNodeModel
Source§fn clone(&self) -> ConversationNodeModel
fn clone(&self) -> ConversationNodeModel
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ConversationNodeModel
impl Debug for ConversationNodeModel
Source§impl Default for ConversationNodeModel
impl Default for ConversationNodeModel
Source§impl<'de> Deserialize<'de> for ConversationNodeModel
impl<'de> Deserialize<'de> for ConversationNodeModel
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 ConversationNodeModel
impl PartialEq for ConversationNodeModel
Source§impl Serialize for ConversationNodeModel
impl Serialize for ConversationNodeModel
impl StructuralPartialEq for ConversationNodeModel
Auto Trait Implementations§
impl Freeze for ConversationNodeModel
impl RefUnwindSafe for ConversationNodeModel
impl Send for ConversationNodeModel
impl Sync for ConversationNodeModel
impl Unpin for ConversationNodeModel
impl UnwindSafe for ConversationNodeModel
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