@minded-ai/mindedjs 1.0.0-ec2-beta-176 → 1.0.0-ec2-beta-177
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.
|
@@ -214,6 +214,7 @@ class LogsCapture:
|
|
|
214
214
|
self.log_entries.append('💡 Thinking: ' + model_output.current_state.thinking)
|
|
215
215
|
self.log_entries.append('🧠 Memory: ' + model_output.current_state.memory)
|
|
216
216
|
self.log_entries.append('🎯 Next goal: ' + model_output.current_state.next_goal)
|
|
217
|
+
print("Finished adding log entries")
|
|
217
218
|
except Exception as e:
|
|
218
219
|
logger.debug(f"Could not extract model outputs: {e}")
|
|
219
220
|
|
package/package.json
CHANGED
|
@@ -214,6 +214,7 @@ class LogsCapture:
|
|
|
214
214
|
self.log_entries.append('💡 Thinking: ' + model_output.current_state.thinking)
|
|
215
215
|
self.log_entries.append('🧠 Memory: ' + model_output.current_state.memory)
|
|
216
216
|
self.log_entries.append('🎯 Next goal: ' + model_output.current_state.next_goal)
|
|
217
|
+
print("Finished adding log entries")
|
|
217
218
|
except Exception as e:
|
|
218
219
|
logger.debug(f"Could not extract model outputs: {e}")
|
|
219
220
|
|