@semiont/inference 0.5.5 → 0.5.6

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 +0 -4
  2. package/package.json +9 -5
package/README.md CHANGED
@@ -295,10 +295,6 @@ npm run test:watch # Watch mode
295
295
  npm run test:coverage # Coverage report
296
296
  ```
297
297
 
298
- ## Examples
299
-
300
- See [examples/basic.ts](examples/basic.ts) for usage examples.
301
-
302
298
  ## License
303
299
 
304
300
  Apache-2.0
package/package.json CHANGED
@@ -1,6 +1,9 @@
1
1
  {
2
2
  "name": "@semiont/inference",
3
- "version": "0.5.5",
3
+ "version": "0.5.6",
4
+ "engines": {
5
+ "node": ">=24.0.0"
6
+ },
4
7
  "type": "module",
5
8
  "description": "AI inference capabilities for entity extraction, text generation, and resource creation",
6
9
  "main": "./dist/index.js",
@@ -24,17 +27,18 @@
24
27
  "test:coverage": "vitest run --coverage"
25
28
  },
26
29
  "dependencies": {
27
- "@anthropic-ai/sdk": "^0.84.0",
30
+ "@anthropic-ai/sdk": "^0.100.1",
28
31
  "@semiont/api-client": "*",
29
32
  "@semiont/core": "*",
30
33
  "@semiont/observability": "*"
31
34
  },
32
35
  "devDependencies": {
33
- "@vitest/coverage-v8": "^4.1.0",
34
- "rollup": "^4.60.3",
36
+ "@vitest/coverage-v8": "^4.1.8",
37
+ "rollup": "^4.61.0",
35
38
  "rollup-plugin-dts": "^6.4.1",
36
39
  "tsup": "^8.0.1",
37
- "typescript": "^6.0.2"
40
+ "typescript": "^6.0.2",
41
+ "vitest": "^4.1.8"
38
42
  },
39
43
  "publishConfig": {
40
44
  "access": "public"