@kalaa/node 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +5 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -56,7 +56,7 @@ kalaa.withContext('nightly-digest', () => {
56
56
  - OpenAI: chat completions, including streaming (`stream_options.include_usage`)
57
57
  - Anthropic: messages, including streaming
58
58
  - Gemini: `generateContent`
59
- - Whisper/audio transcription duration (if `music-metadata` is installed)
59
+ - Whisper/audio transcription duration
60
60
 
61
61
  ## Configuration
62
62
 
@@ -69,11 +69,10 @@ kalaa.withContext('nightly-digest', () => {
69
69
 
70
70
  ## Failure behavior
71
71
 
72
- This package never touches a database, never computes cost itself (your
73
- Kalaa project prices every event server-side), and never sits in the path
74
- of your AI calls. If the ingest endpoint is unreachable, events are
75
- buffered and retried on the next flush cycle — your app is never blocked
76
- or crashed by a tracking failure.
72
+ This package never touches a database and never sits in the path of your
73
+ AI calls. If the ingest endpoint is unreachable, events are buffered and
74
+ retried on the next flush cycle your app is never blocked or crashed by
75
+ a tracking failure.
77
76
 
78
77
  ## License
79
78
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kalaa/node",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Drop-in AI cost tracking for Node.js and TypeScript. Auto-instruments OpenAI, Anthropic, and Gemini at the class level, with zero code at each call site.",
5
5
  "main": "costmeter.js",
6
6
  "types": "costmeter.d.ts",