(patchText: string, id = "call-apply-patch")
| 115 | } |
| 116 | |
| 117 | const call = (patchText: string, id = "call-apply-patch") => ({ |
| 118 | sessionID, |
| 119 | ...toolIdentity, |
| 120 | call: { type: "tool-call" as const, id, name: "apply_patch", input: { patchText } }, |
| 121 | }) |
| 122 | |
| 123 | const exists = (target: string) => |
| 124 | Effect.promise(() => |
no outgoing calls
no test coverage detected