@semiont/inference 0.2.30-build.46 → 0.2.30-build.48

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 +1 -0
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # @semiont/inference
2
2
 
3
3
  [![Tests](https://github.com/The-AI-Alliance/semiont/actions/workflows/package-tests.yml/badge.svg)](https://github.com/The-AI-Alliance/semiont/actions/workflows/package-tests.yml?query=branch%3Amain+is%3Asuccess+job%3A%22Test+inference%22)
4
+ [![codecov](https://codecov.io/gh/The-AI-Alliance/semiont/graph/badge.svg?flag=inference)](https://codecov.io/gh/The-AI-Alliance/semiont?flag=inference)
4
5
  [![npm version](https://img.shields.io/npm/v/@semiont/inference.svg)](https://www.npmjs.com/package/@semiont/inference)
5
6
  [![npm downloads](https://img.shields.io/npm/dm/@semiont/inference.svg)](https://www.npmjs.com/package/@semiont/inference)
6
7
  [![License](https://img.shields.io/npm/l/@semiont/inference.svg)](https://github.com/The-AI-Alliance/semiont/blob/main/LICENSE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@semiont/inference",
3
- "version": "0.2.30-build.46",
3
+ "version": "0.2.30-build.48",
4
4
  "type": "module",
5
5
  "description": "AI inference capabilities for entity extraction, text generation, and resource creation",
6
6
  "main": "./dist/index.js",
@@ -20,7 +20,8 @@
20
20
  "typecheck": "tsc --noEmit",
21
21
  "clean": "rm -rf dist",
22
22
  "test": "vitest run",
23
- "test:watch": "vitest"
23
+ "test:watch": "vitest",
24
+ "test:coverage": "vitest run --coverage"
24
25
  },
25
26
  "dependencies": {
26
27
  "@anthropic-ai/sdk": "^0.63.0",
@@ -28,6 +29,7 @@
28
29
  "@semiont/core": "*"
29
30
  },
30
31
  "devDependencies": {
32
+ "@vitest/coverage-v8": "^3.0.0",
31
33
  "tsup": "^8.0.1",
32
34
  "typescript": "^5.6.3",
33
35
  "vitest": "^3.2.4"