agency-lang 0.0.57 → 0.0.58
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 +1 -1
- package/dist/lib/cli/test.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ agency infile.agency
|
|
|
25
25
|
Note that the generated files use several other libraries that you will need to install as well:
|
|
26
26
|
|
|
27
27
|
```bash
|
|
28
|
-
pnpm i nanoid openai piemachine statelog-client zod
|
|
28
|
+
pnpm i nanoid openai piemachine statelog-client zod smoltalk
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
## troubleshooting
|
package/dist/lib/cli/test.js
CHANGED
|
@@ -18,7 +18,7 @@ function writeTestCase(agencyFilename, nodeName, input, expectedOutput, evaluati
|
|
|
18
18
|
tests = JSON.parse(fs.readFileSync(testFilePath, "utf-8"));
|
|
19
19
|
}
|
|
20
20
|
else {
|
|
21
|
-
tests = { sourceFile: agencyFilename, tests: [] };
|
|
21
|
+
tests = { sourceFile: path.basename(agencyFilename), tests: [] };
|
|
22
22
|
}
|
|
23
23
|
const testCase = {
|
|
24
24
|
nodeName,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agency-lang",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.58",
|
|
4
4
|
"description": "The Agency language",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"piemachine": "^0.0.8",
|
|
56
56
|
"prompts": "^2.4.2",
|
|
57
57
|
"smoltalk": "^0.0.18",
|
|
58
|
-
"statelog-client": "^0.0.
|
|
58
|
+
"statelog-client": "^0.0.38",
|
|
59
59
|
"tarsec": "^0.1.8",
|
|
60
60
|
"typestache": "^0.4.4",
|
|
61
61
|
"zod": "^4.3.5"
|