@ljoukov/llm 3.0.1 → 3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ljoukov/llm",
3
- "version": "3.0.1",
3
+ "version": "3.0.2",
4
4
  "description": "Unified wrapper over OpenAI Responses API and Google Gemini (@google/genai), with streaming + usage/cost metrics.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -47,9 +47,6 @@
47
47
  "bench:agent:estimate": "tsx benchmarks/agent/run.ts --estimate-only",
48
48
  "bench:agent:latest": "tsx benchmarks/agent/run.ts --tasks all --prune-traces",
49
49
  "bench:agent:latest:estimate": "tsx benchmarks/agent/run.ts --tasks all --estimate-only",
50
- "chatgpt-auth:seed": "tsx chatgpt-auth/seed/cli.ts",
51
- "chatgpt-auth:worker:dry-run": "cd chatgpt-auth/worker && npx wrangler deploy --dry-run",
52
- "chatgpt-auth:worker:deploy": "cd chatgpt-auth/worker && npx wrangler deploy",
53
50
  "test": "npm run test:unit",
54
51
  "test:unit": "vitest run --config vitest.unit.config.ts",
55
52
  "test:integration": "vitest run --config vitest.integration.config.ts",
@@ -61,15 +58,17 @@
61
58
  "@alcyone-labs/zod-to-json-schema": "^4.0.10",
62
59
  "@google/genai": "^1.40.0",
63
60
  "google-auth-library": "^10.5.0",
64
- "openai": "^6.18.0",
61
+ "openai": "^6.23.0",
65
62
  "undici": "^7.21.0",
63
+ "ws": "^8.19.0",
66
64
  "zod": "^4.3.6"
67
65
  },
68
66
  "devDependencies": {
69
67
  "@biomejs/biome": "^2.3.14",
70
68
  "@types/node": "^24.0.0",
71
- "tsx": "^4.20.6",
69
+ "@types/ws": "^8.18.1",
72
70
  "tsup": "^8.0.0",
71
+ "tsx": "^4.20.6",
73
72
  "typescript": "^5.8.0",
74
73
  "vitest": "^3.0.0"
75
74
  },