MCPcopy Index your code
hub / github.com/AI45Lab/Code / with_suggested_tools

Method with_suggested_tools

core/src/program.rs:563–569  ·  view source on GitHub ↗
(
        mut self,
        tools: impl IntoIterator<Item = impl Into<String>>,
    )

Source from the content-addressed store, hash-verified

561 }
562
563 pub fn with_suggested_tools(
564 mut self,
565 tools: impl IntoIterator<Item = impl Into<String>>,
566 ) -> Self {
567 self.suggested_tools = tools.into_iter().map(Into::into).collect();
568 self
569 }
570
571 pub fn with_evidence_uris(mut self, uris: impl IntoIterator<Item = impl Into<String>>) -> Self {
572 self.evidence_uris = uris.into_iter().map(Into::into).collect();

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected