MCPcopy Create free account
hub / github.com/AI45Lab/Code / with_max_steps

Method with_max_steps

core/src/orchestration/executor.rs:62–65  ·  view source on GitHub ↗
(mut self, max_steps: usize)

Source from the content-addressed store, hash-verified

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());

Calls

no outgoing calls