@dropout-ai/runtime 0.3.1 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dropout-ai/runtime",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Invisible Node.js runtime for capturing AI interactions.",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
package/src/index.js CHANGED
@@ -207,7 +207,8 @@ class Dropout {
207
207
  session_id: global.__dropout_session_id__,
208
208
  turn_role: 'assistant', // Default to assistant for system-captured logs
209
209
  turn_index: 0, // In universal mode, we capture raw streams
210
- content_blob: this.privacy === 'full' ? content : null,
210
+ //content_blob: this.privacy === 'full' ? content : null,
211
+ content: this.privacy === 'full' ? content : null,
211
212
  metadata_flags: {
212
213
  latency: data.latency,
213
214
  url: data.url,