@overmind-lab/trace-sdk 0.0.1 → 0.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.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # overmind-js
1
+ # @overmind-lab/trace-sdk
2
2
 
3
3
  JavaScript/TypeScript SDK for [Overmind](https://overmindlab.ai) — automatic LLM observability powered by OpenTelemetry.
4
4
 
@@ -9,9 +9,9 @@ Instrument your OpenAI calls with a single `initTracing()` call. Traces are expo
9
9
  ## Installation
10
10
 
11
11
  ```bash
12
- bun add overmind-js openai
12
+ bun add @overmind-lab/trace-sdk openai
13
13
  # or
14
- npm install overmind-js openai
14
+ npm install @overmind-lab/trace-sdk openai
15
15
  ```
16
16
 
17
17
  ---
@@ -20,7 +20,7 @@ npm install overmind-js openai
20
20
 
21
21
  ```ts
22
22
  import { OpenAI } from "openai";
23
- import { OvermindClient } from "overmind-js";
23
+ import { OvermindClient } from "@overmind-lab/trace-sdk";
24
24
 
25
25
  // 1. Create the client
26
26
  const overmindClient = new OvermindClient({
File without changes
package/package.json CHANGED
@@ -24,5 +24,5 @@
24
24
  "dev": "tsx watch src/index.ts",
25
25
  "format": "biome format --write"
26
26
  },
27
- "version": "0.0.1"
27
+ "version": "0.0.2"
28
28
  }