acme-engine 0.0.1 → 0.1.1
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 +22 -19
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -0
- package/package.json +38 -25
- package/bin/acme-model-runtime.mjs +0 -19617
package/README.md
CHANGED
|
@@ -1,19 +1,22 @@
|
|
|
1
|
-
# acme-engine
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
## Install
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
npm install acme-engine
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
##
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
1
|
+
# acme-engine
|
|
2
|
+
|
|
3
|
+
Provider-neutral model execution runtime for embedding ACME directly in Node applications.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install acme-engine
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Use
|
|
12
|
+
|
|
13
|
+
```ts
|
|
14
|
+
import { createAcmeModelRuntime } from 'acme-engine';
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
`acme-engine` is the convenience facade for the supported in-process
|
|
18
|
+
`@acme-engine/model-runtime` package. It does not own application cognition,
|
|
19
|
+
memory, prompts, tool policy, or model-selection strategy.
|
|
20
|
+
|
|
21
|
+
Version 0.1.0 intentionally replaces the experimental 0.0.1 CLI-only package
|
|
22
|
+
role with an importable library API.
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,25 +1,38 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "acme-engine",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "ACME model execution runtime for provider-neutral AI systems",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "acme-engine",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "ACME model execution runtime for provider-neutral AI systems",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist/**/*.js",
|
|
9
|
+
"dist/**/*.js.map",
|
|
10
|
+
"dist/**/*.d.ts",
|
|
11
|
+
"dist/**/*.d.ts.map",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"default": "./dist/index.js"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@acme-engine/model-runtime": "0.1.1"
|
|
22
|
+
},
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=24.0.0 <25"
|
|
25
|
+
},
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "git+https://github.com/zackemannen81/acme-engine.git",
|
|
29
|
+
"directory": "packages/acme-engine"
|
|
30
|
+
},
|
|
31
|
+
"publishConfig": {
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "tsc -b --pretty false",
|
|
36
|
+
"typecheck": "tsc -b --pretty false"
|
|
37
|
+
}
|
|
38
|
+
}
|