Files
klz-cables.com/.pnpm-store/v10/files/3a/19bf5c4d6d2d3358378f1f21544a6851b5040562ee5482eb32afb9940eb39e171509b0320d73d03be3f7b1810cb997d153a497542b731bee23edfe19642799
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

20 lines
987 B
Plaintext

/**
* Result extraction functions for MCP server instrumentation
*
* Handles extraction of attributes from tool and prompt execution results.
*/
/**
* Extract tool result attributes for span instrumentation
* @param result - Tool execution result
* @param recordOutputs - Whether to include actual content or just metadata (counts, error status)
* @returns Attributes extracted from tool result content
*/
export declare function extractToolResultAttributes(result: unknown, recordOutputs: boolean): Record<string, string | number | boolean>;
/**
* Extract prompt result attributes for span instrumentation
* @param result - Prompt execution result
* @param recordOutputs - Whether to include actual content or just metadata (counts)
* @returns Attributes extracted from prompt result
*/
export declare function extractPromptResultAttributes(result: unknown, recordOutputs: boolean): Record<string, string | number | boolean>;
//# sourceMappingURL=resultExtraction.d.ts.map