memeloop 0.1.1 → 0.1.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/THIRD_PARTY_NOTICES.md +29 -0
- package/dist/{chunk-MAJWHAKR.js → chunk-5JEV7632.js} +2 -2
- package/dist/{chunk-KFS2EJT6.js → chunk-K5KZJNDP.js} +2 -2
- package/dist/{chunk-T7FSXWFR.js → chunk-LGUGYRR4.js} +4 -4
- package/dist/{chunk-T7FSXWFR.js.map → chunk-LGUGYRR4.js.map} +1 -1
- package/dist/{chunk-2C6BJZI3.js → chunk-P6L3444O.js} +3 -3
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +5 -5
- package/dist/loop-api.cjs +3 -3
- package/dist/loop-api.cjs.map +1 -1
- package/dist/loop-api.js +4 -4
- package/dist/mobile.cjs +3 -3
- package/dist/mobile.cjs.map +1 -1
- package/dist/mobile.js +2 -2
- package/dist/model-catalog.cjs +246 -0
- package/dist/model-catalog.cjs.map +1 -0
- package/dist/model-catalog.d.cts +57 -0
- package/dist/model-catalog.d.ts +57 -0
- package/dist/model-catalog.js +213 -0
- package/dist/model-catalog.js.map +1 -0
- package/dist/{runtime-PGWR6FIV.js → runtime-UONPTAYK.js} +3 -3
- package/package.json +9 -2
- /package/dist/{chunk-MAJWHAKR.js.map → chunk-5JEV7632.js.map} +0 -0
- /package/dist/{chunk-KFS2EJT6.js.map → chunk-K5KZJNDP.js.map} +0 -0
- /package/dist/{chunk-2C6BJZI3.js.map → chunk-P6L3444O.js.map} +0 -0
- /package/dist/{runtime-PGWR6FIV.js.map → runtime-UONPTAYK.js.map} +0 -0
|
@@ -3,9 +3,9 @@ import {
|
|
|
3
3
|
createAgentLoopScriptRunner,
|
|
4
4
|
createAgentProfileRunner,
|
|
5
5
|
createMemeLoopRuntime
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-5JEV7632.js";
|
|
7
7
|
import "./chunk-AZFYDWIN.js";
|
|
8
|
-
import "./chunk-
|
|
8
|
+
import "./chunk-LGUGYRR4.js";
|
|
9
9
|
import "./chunk-WAI6BODI.js";
|
|
10
10
|
import "./chunk-BGPU4RR7.js";
|
|
11
11
|
import "./chunk-FWSY5HOA.js";
|
|
@@ -15,4 +15,4 @@ export {
|
|
|
15
15
|
createAgentProfileRunner,
|
|
16
16
|
createMemeLoopRuntime
|
|
17
17
|
};
|
|
18
|
-
//# sourceMappingURL=runtime-
|
|
18
|
+
//# sourceMappingURL=runtime-UONPTAYK.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "memeloop",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "MemeLoop core runtime: agent framework, storage, sync engine, tools, IM adapter.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
10
10
|
"files": [
|
|
11
11
|
"dist",
|
|
12
|
-
"README.md"
|
|
12
|
+
"README.md",
|
|
13
|
+
"THIRD_PARTY_NOTICES.md"
|
|
13
14
|
],
|
|
14
15
|
"sideEffects": false,
|
|
15
16
|
"dependencies": {
|
|
@@ -119,6 +120,11 @@
|
|
|
119
120
|
"import": "./dist/llm-providers.js",
|
|
120
121
|
"require": "./dist/llm-providers.cjs"
|
|
121
122
|
},
|
|
123
|
+
"./model-catalog": {
|
|
124
|
+
"types": "./dist/model-catalog.d.ts",
|
|
125
|
+
"import": "./dist/model-catalog.js",
|
|
126
|
+
"require": "./dist/model-catalog.cjs"
|
|
127
|
+
},
|
|
122
128
|
"./conversation": {
|
|
123
129
|
"types": "./dist/conversation.d.ts",
|
|
124
130
|
"import": "./dist/conversation.js",
|
|
@@ -153,6 +159,7 @@
|
|
|
153
159
|
"scripts": {
|
|
154
160
|
"build": "node scripts/generate-loop-sources.mjs && node scripts/generate-profile-sources.mjs && tsup",
|
|
155
161
|
"build:scripts": "node scripts/generate-loop-sources.mjs",
|
|
162
|
+
"catalog:sync": "node scripts/sync-model-catalog.mjs",
|
|
156
163
|
"lint": "eslint \"src/**/*.{ts,tsx}\"",
|
|
157
164
|
"test": "vitest run",
|
|
158
165
|
"test:unit": "vitest run",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|