lightrace 0.1.9 → 0.1.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/README.md CHANGED
@@ -16,7 +16,7 @@ import { Lightrace, trace } from "lightrace";
16
16
  const lt = new Lightrace({
17
17
  publicKey: "pk-lt-demo",
18
18
  secretKey: "sk-lt-demo",
19
- host: "http://localhost:3002",
19
+ host: "http://localhost:3000",
20
20
  });
21
21
 
22
22
  // Root trace
package/dist/client.js CHANGED
@@ -22,7 +22,7 @@ export class Lightrace {
22
22
  constructor(options = {}) {
23
23
  this.publicKey = options.publicKey ?? process.env.LIGHTRACE_PUBLIC_KEY ?? "";
24
24
  this.secretKey = options.secretKey ?? process.env.LIGHTRACE_SECRET_KEY ?? "";
25
- this.host = (options.host ?? process.env.LIGHTRACE_HOST ?? "http://localhost:3002").replace(/\/$/, "");
25
+ this.host = (options.host ?? process.env.LIGHTRACE_HOST ?? "http://localhost:3000").replace(/\/$/, "");
26
26
  this.enabled = options.enabled !== false;
27
27
  this.userId = options.userId;
28
28
  this.sessionId = options.sessionId;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lightrace",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "Agentic development kit — LLM tracing, tool management, and agent primitives",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",