Input/Output Tracking
This guide explains how to properly handle input and output data when using the traceAgentNode
wrapper in your Handit.AI implementation. Accurate tracking ensures meaningful traces, metrics, and agent monitoring.
Node Wrapper Data Handling
When using the traceAgentNode
wrapper, it's crucial to handle input and output data correctly:
Input Data
When wrapping a function with traceAgentNode
, make sure you’re passing the actual input the function works with—not just metadata.
Best Practices
Pass the full input data used in your logic (not summaries or labels)
Sanitize PII or sensitive fields before passing input to the wrapper
Maintain the expected data structure your function relies on
Output Data
To enable complete traceability, the function wrapped by traceAgentNode
should return the full result of the operation.
Best Practices
Return the unmodified result directly from the function
Avoid trimming, masking, or simplifying outputs unless absolutely necessary
Let Handit.AI trace the raw output to preserve context
Examples
Node.js
Python
Data Sanitization Guidelines
When dealing with PII or sensitive data, sanitize inputs before passing them to Handit.AI.
🔧 How to sanitize:
Identify fields like
email
,phone
,name
, etc.Mask or remove sensitive values
Preserve the structure and semantics for downstream processing
Example: JavaScript sanitization
Best Practices Summary
Always pass complete input data through the wrapper
Return complete output from your functions
Sanitize sensitive data before processing
Maintain data structure integrity
Don't modify output before returning
Last updated