(mut self, max_steps: usize)
| 60 | } |
| 61 | |
| 62 | pub fn with_max_steps(mut self, max_steps: usize) -> Self { |
| 63 | self.max_steps = Some(max_steps); |
| 64 | self |
| 65 | } |
| 66 | |
| 67 | pub fn with_parent_session_id(mut self, parent_session_id: impl Into<String>) -> Self { |
| 68 | self.parent_session_id = Some(parent_session_id.into()); |
no outgoing calls