MCPcopy Index your code
hub / github.com/InfinitiBit/graphbit / with_tool

Method with_tool

core/src/llm/mod.rs:110–113  ·  view source on GitHub ↗
(mut self, tool: LlmTool)

Source from the content-addressed store, hash-verified

108 /// Add a tool
109 #[inline]
110 pub fn with_tool(mut self, tool: LlmTool) -> Self {
111 self.tools.push(tool);
112 self
113 }
114
115 /// Add multiple tools
116 pub fn with_tools(mut self, tools: Vec<LlmTool>) -> Self {

Calls

no outgoing calls