tardie 0.10.0 → 0.10.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 +7 -7
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -150,17 +150,17 @@ const releaseAnalyst = actor({
|
|
|
150
150
|
components: [
|
|
151
151
|
// infer handles messages as model loops composed by children.
|
|
152
152
|
infer([
|
|
153
|
-
instructions, //
|
|
154
|
-
deploys, // provides recent_deploys tool and
|
|
153
|
+
instructions, // system prompt
|
|
154
|
+
deploys, // provides recent_deploys tool and paired handler
|
|
155
155
|
// budget scopes the tool-call limit to the codeMode subtree
|
|
156
156
|
budget([
|
|
157
157
|
codeMode([ // sandboxed code execution
|
|
158
|
-
filesPackage(),
|
|
159
|
-
fetchPackage(),
|
|
160
|
-
agentsPackage(),
|
|
161
|
-
workspacePackage()
|
|
158
|
+
filesPackage(),
|
|
159
|
+
fetchPackage(),
|
|
160
|
+
agentsPackage(),
|
|
161
|
+
workspacePackage()
|
|
162
162
|
])
|
|
163
|
-
], { authority: caller() }),
|
|
163
|
+
], { authority: caller() }),
|
|
164
164
|
compaction(), // bounded model context
|
|
165
165
|
outputValidateOnce // validates structured result once without correction
|
|
166
166
|
], model),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tardie",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Clavia, Inc.",
|
|
6
6
|
"description": "A durable agent harness. State is a pure function of the log.",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"access": "public"
|
|
17
17
|
},
|
|
18
18
|
"tardigrade": {
|
|
19
|
-
"sourceTree": "
|
|
19
|
+
"sourceTree": "1ffdd0b2fc59369ef9abb85d1a820652aab8157e"
|
|
20
20
|
},
|
|
21
21
|
"files": [
|
|
22
22
|
"src",
|
|
@@ -42,6 +42,8 @@
|
|
|
42
42
|
"./runtime/*": "./src/agent/runtime/*.ts",
|
|
43
43
|
"./core/actor": "./src/core/actor/index.ts",
|
|
44
44
|
"./core/actor/*": "./src/core/actor/*.ts",
|
|
45
|
+
"./core/actor/method": "./src/core/actor/method/index.ts",
|
|
46
|
+
"./core/actor/method/*": "./src/core/actor/method/*.ts",
|
|
45
47
|
"./core/communication": "./src/core/communication/index.ts",
|
|
46
48
|
"./core/communication/*": "./src/core/communication/*.ts",
|
|
47
49
|
"./core/log": "./src/core/log/index.ts",
|