@pentatonic-ai/ai-agent-sdk 0.10.3 → 0.10.4

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/dist/index.cjs CHANGED
@@ -878,7 +878,7 @@ function fireAndForgetEmit(clientConfig, sessionOpts, messages, result, model) {
878
878
  }
879
879
 
880
880
  // src/telemetry.js
881
- var VERSION = "0.10.3";
881
+ var VERSION = "0.10.4";
882
882
  var TELEMETRY_URL = "https://sdk-telemetry.philip-134.workers.dev";
883
883
  function machineId() {
884
884
  const raw = typeof process !== "undefined" ? `${process.env?.USER || process.env?.USERNAME || "u"}:${process.platform || "x"}:${process.arch || "x"}` : "browser";
package/dist/index.js CHANGED
@@ -847,7 +847,7 @@ function fireAndForgetEmit(clientConfig, sessionOpts, messages, result, model) {
847
847
  }
848
848
 
849
849
  // src/telemetry.js
850
- var VERSION = "0.10.3";
850
+ var VERSION = "0.10.4";
851
851
  var TELEMETRY_URL = "https://sdk-telemetry.philip-134.workers.dev";
852
852
  function machineId() {
853
853
  const raw = typeof process !== "undefined" ? `${process.env?.USER || process.env?.USERNAME || "u"}:${process.platform || "x"}:${process.arch || "x"}` : "browser";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pentatonic-ai/ai-agent-sdk",
3
- "version": "0.10.3",
3
+ "version": "0.10.4",
4
4
  "description": "TES SDK — LLM observability and lifecycle tracking via Pentatonic Thing Event System. Track token usage, tool calls, and conversations. Manage things through event-sourced lifecycle stages with AI enrichment and vector search.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -7,10 +7,13 @@ RUN pip install --no-cache-dir -r requirements.txt
7
7
 
8
8
  COPY worker.py .
9
9
  # Pure helper modules — sibling imports inside worker.py
10
- # (noise_filter, confidence, entity_id). entity_id.py is byte-identical to
11
- # extractor-sync's copy (per-service build contexts prevent a shared module;
12
- # tests/test_entity_id_parity.py guards drift). The test_*.py files are
13
- # intentionally excluded; they're for local pytest, not container runtime.
14
- COPY noise_filter.py confidence.py entity_id.py ./
10
+ # (noise_filter, confidence, entity_id, sensitive_filter). entity_id.py is
11
+ # byte-identical to extractor-sync's copy (per-service build contexts
12
+ # prevent a shared module; tests/test_entity_id_parity.py guards drift).
13
+ # sensitive_filter was added in #67 (interpersonal-gossip guard); if you
14
+ # add a new sibling module, add it here too — missing COPY makes the
15
+ # container crash-loop on import at startup (observed 2026-06-08 deploy).
16
+ # The test_*.py files are intentionally excluded; pytest only, not runtime.
17
+ COPY noise_filter.py confidence.py entity_id.py sensitive_filter.py ./
15
18
 
16
19
  CMD ["python", "worker.py"]