Set default LLM configuration for auto-generated agents
(mut self, llm_config: crate::llm::LlmConfig)
| 220 | |
| 221 | /// Set default LLM configuration for auto-generated agents |
| 222 | pub fn with_default_llm_config(mut self, llm_config: crate::llm::LlmConfig) -> Self { |
| 223 | self.default_llm_config = Some(llm_config); |
| 224 | self |
| 225 | } |
| 226 | |
| 227 | /// Register handlers for [`NodeType::Condition`] nodes (e.g. from Python callables). |
| 228 | pub fn with_conditional_handlers( |
no outgoing calls