@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.
- package/package.json +1 -1
- package/src/index.js +2 -1
package/package.json
CHANGED
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,
|