@theokit/agents 0.45.0 → 0.47.0
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/LICENSE +201 -0
- package/dist/{bridge-entry-DQJMvdRy.d.ts → bridge-entry-BQ6UUSLZ.d.ts} +69 -9
- package/dist/bridge.d.ts +1 -1
- package/dist/bridge.js +3 -3
- package/dist/{chunk-XRPFOFYF.js → chunk-FEH7JFH7.js} +864 -354
- package/dist/chunk-FEH7JFH7.js.map +1 -0
- package/dist/index.d.ts +108 -4
- package/dist/index.js +234 -3
- package/dist/index.js.map +1 -1
- package/package.json +11 -9
- package/dist/chunk-XRPFOFYF.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theokit/agents",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.47.0",
|
|
4
4
|
"description": "AI agents as first-class citizens of the TheoKit pipeline. The fluent agent()/tool() builders compile to SDK Agent.create() (M31 builder-only authoring API).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -25,11 +25,6 @@
|
|
|
25
25
|
"README.md",
|
|
26
26
|
"LICENSE"
|
|
27
27
|
],
|
|
28
|
-
"scripts": {
|
|
29
|
-
"build": "tsup",
|
|
30
|
-
"test": "vitest run",
|
|
31
|
-
"test:watch": "vitest"
|
|
32
|
-
},
|
|
33
28
|
"peerDependencies": {
|
|
34
29
|
"@theokit/http": ">=0.1.0-alpha.0",
|
|
35
30
|
"@theokit/sdk": "^4.0.1",
|
|
@@ -47,7 +42,6 @@
|
|
|
47
42
|
}
|
|
48
43
|
},
|
|
49
44
|
"devDependencies": {
|
|
50
|
-
"@theokit/http": "workspace:*",
|
|
51
45
|
"@theokit/sdk": "^4.1.0",
|
|
52
46
|
"@theokit/sdk-tools": "^0.11.0",
|
|
53
47
|
"ai": "^7.0.14",
|
|
@@ -55,9 +49,17 @@
|
|
|
55
49
|
"tsup": "^8.5.1",
|
|
56
50
|
"typescript": "^5.9.3",
|
|
57
51
|
"vitest": "^3.2.6",
|
|
58
|
-
"zod": "^4.4.3"
|
|
52
|
+
"zod": "^4.4.3",
|
|
53
|
+
"@theokit/http": "0.7.0",
|
|
54
|
+
"@theokit/presenter": "0.3.0"
|
|
59
55
|
},
|
|
60
56
|
"engines": {
|
|
61
57
|
"node": ">=22.12.0"
|
|
58
|
+
},
|
|
59
|
+
"scripts": {
|
|
60
|
+
"build": "tsup",
|
|
61
|
+
"test:live": "vitest run --config vitest.live.config.ts",
|
|
62
|
+
"test": "vitest run",
|
|
63
|
+
"test:watch": "vitest"
|
|
62
64
|
}
|
|
63
|
-
}
|
|
65
|
+
}
|