(execution: ExecutionResult)
| 131 | Effect.annotateCurrentSpan(executeOutcomeAttributes(result)); |
| 132 | |
| 133 | const annotateExecutionOutcome = (execution: ExecutionResult) => |
| 134 | execution.status === "paused" |
| 135 | ? Effect.annotateCurrentSpan({ "mcp.execute.outcome": "paused" }) |
| 136 | : annotateExecuteOutcome(execution.result); |
| 137 | |
| 138 | // --------------------------------------------------------------------------- |
| 139 | // Result formatting |
no test coverage detected