(name: string, id = `call-${name}`)
| 42 | } |
| 43 | const sessionID = SessionV2.ID.make("ses_registry") |
| 44 | const call = (name: string, id = `call-${name}`): ToolRegistry.ExecuteInput => ({ |
| 45 | sessionID, |
| 46 | ...identity, |
| 47 | call: { type: "tool-call", id, name, input: { text: name } }, |
| 48 | }) |
| 49 | |
| 50 | const make = (permission?: string) => { |
| 51 | const tool = Tool.make({ |
no outgoing calls
no test coverage detected