@minded-ai/mindedjs 1.0.0-ec2-beta-175 → 1.0.0-ec2-beta-176

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.
@@ -216,6 +216,8 @@ class LogsCapture:
216
216
  self.log_entries.append('🎯 Next goal: ' + model_output.current_state.next_goal)
217
217
  except Exception as e:
218
218
  logger.debug(f"Could not extract model outputs: {e}")
219
+
220
+ print(f"self.log_entries count: {len(self.log_entries)}")
219
221
 
220
222
  # Upload to S3
221
223
  s3_key = f"{self.s3_prefix}{self.session_id}/{self.tool_call_id}/operator.log"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minded-ai/mindedjs",
3
- "version": "1.0.0-ec2-beta-175",
3
+ "version": "1.0.0-ec2-beta-176",
4
4
  "description": "MindedJS is a TypeScript library for building agents.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -216,6 +216,8 @@ class LogsCapture:
216
216
  self.log_entries.append('🎯 Next goal: ' + model_output.current_state.next_goal)
217
217
  except Exception as e:
218
218
  logger.debug(f"Could not extract model outputs: {e}")
219
+
220
+ print(f"self.log_entries count: {len(self.log_entries)}")
219
221
 
220
222
  # Upload to S3
221
223
  s3_key = f"{self.s3_prefix}{self.session_id}/{self.tool_call_id}/operator.log"