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

Method add_step

core/src/planning/mod.rs:235–238  ·  view source on GitHub ↗
(&mut self, step: Task)

Source from the content-addressed store, hash-verified

233 }
234
235 pub fn add_step(&mut self, step: Task) {
236 self.steps.push(step);
237 self.estimated_steps = self.steps.len();
238 }
239
240 pub fn add_required_tool(&mut self, tool: impl Into<String>) {
241 let tool_str = tool.into();

Calls 1

lenMethod · 0.45