@pentatonic-ai/ai-agent-sdk 0.10.9 → 0.10.10

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.9";
881
+ var VERSION = "0.10.10";
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.9";
850
+ var VERSION = "0.10.10";
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.9",
3
+ "version": "0.10.10",
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",
@@ -14,6 +14,6 @@ COPY worker.py .
14
14
  # add a new sibling module, add it here too — missing COPY makes the
15
15
  # container crash-loop on import at startup (observed 2026-06-08 deploy).
16
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 extraction_schema.py ./
17
+ COPY noise_filter.py confidence.py entity_id.py sensitive_filter.py extraction_schema.py source_time.py ./
18
18
 
19
19
  CMD ["python", "worker.py"]
@@ -7,7 +7,7 @@ RUN pip install --no-cache-dir -r requirements.txt
7
7
 
8
8
  # confidence.py is a byte-identical copy of extractor-async's (the born_salience
9
9
  # scale must match the decay side). test_born_salience_parity guards drift.
10
- COPY entity_id.py confidence.py server.py .
10
+ COPY entity_id.py confidence.py source_time.py server.py .
11
11
 
12
12
  EXPOSE 8101
13
13
  CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "8101", "--workers", "2"]