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

Method with_tool

core/src/planning/mod.rs:169–172  ·  view source on GitHub ↗

Set tool for execution

(mut self, tool: impl Into<String>)

Source from the content-addressed store, hash-verified

167
168 /// Set tool for execution
169 pub fn with_tool(mut self, tool: impl Into<String>) -> Self {
170 self.tool = Some(tool.into());
171 self
172 }
173
174 /// Set dependency IDs
175 pub fn with_dependencies(mut self, deps: Vec<String>) -> Self {

Calls

no outgoing calls