@ljoukov/llm 3.0.2 → 3.0.3
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 +131 -15
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +32 -7
- package/dist/index.d.ts +32 -7
- package/dist/index.js +116 -15
- package/dist/index.js.map +1 -1
- package/package.json +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ljoukov/llm",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.3",
|
|
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": {
|
|
@@ -49,7 +49,10 @@
|
|
|
49
49
|
"bench:agent:latest:estimate": "tsx benchmarks/agent/run.ts --tasks all --estimate-only",
|
|
50
50
|
"test": "npm run test:unit",
|
|
51
51
|
"test:unit": "vitest run --config vitest.unit.config.ts",
|
|
52
|
-
"test:integration": "
|
|
52
|
+
"test:integration": "npm run test:integration:node",
|
|
53
|
+
"test:integration:node": "vitest run --config vitest.integration.config.ts",
|
|
54
|
+
"test:integration:bun": "bunx vitest run --config vitest.integration.config.ts",
|
|
55
|
+
"test:integration:runtimes": "npm run test:integration:node && npm run test:integration:bun",
|
|
53
56
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
54
57
|
"verify": "npm run format:check && npm run lint && npm run typecheck && npm run test:unit && npm run build",
|
|
55
58
|
"prepack": "npm run verify"
|