Add a system prompt override to the configuration
(mut self, system_prompt: impl Into<String>)
| 47 | |
| 48 | /// Add a system prompt override to the configuration |
| 49 | pub fn with_system_prompt_override(mut self, system_prompt: impl Into<String>) -> Self { |
| 50 | self.system_prompt_override = Some(system_prompt.into()); |
| 51 | self |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | impl WorkflowNode { |
no outgoing calls