@cendor/cassette 0.2.2 → 0.2.4
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/NOTICE +7 -0
- package/README.md +3 -3
- package/package.json +9 -3
package/NOTICE
ADDED
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# @cendor/cassette
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
(same request hashes, same on-disk `cassette/2` format).
|
|
3
|
+
[](https://www.npmjs.com/package/@cendor/cassette) [](https://opensource.org/licenses/Apache-2.0)
|
|
4
|
+
|
|
5
|
+
Record real LLM calls once, then replay them in your tests forever — offline, no API key, no cost, and the same result every run. The TypeScript port of [`cendor.cassette`](https://github.com/cendorhq/cendor-libs), byte-conformant with the Python package (same request hashes, same on-disk `cassette/2` format).
|
|
6
6
|
|
|
7
7
|
The `vcrpy` of the agent era, except it captures the _whole_ run: every LLM call and tool call, in
|
|
8
8
|
order. It cooperates through `@cendor/core` — it never patches a client itself. It **records** by
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cendor/cassette",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "Record real LLM calls once, then replay them in your tests forever — offline, no API key, no cost, and the same result every run.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -18,14 +18,16 @@
|
|
|
18
18
|
},
|
|
19
19
|
"files": [
|
|
20
20
|
"dist",
|
|
21
|
-
"README.md"
|
|
21
|
+
"README.md",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"NOTICE"
|
|
22
24
|
],
|
|
23
25
|
"sideEffects": false,
|
|
24
26
|
"engines": {
|
|
25
27
|
"node": ">=18"
|
|
26
28
|
},
|
|
27
29
|
"dependencies": {
|
|
28
|
-
"@cendor/core": "^0.3.
|
|
30
|
+
"@cendor/core": "^0.3.3"
|
|
29
31
|
},
|
|
30
32
|
"keywords": [
|
|
31
33
|
"llm",
|
|
@@ -40,6 +42,10 @@
|
|
|
40
42
|
"url": "git+https://github.com/cendorhq/cendor-libs-js.git",
|
|
41
43
|
"directory": "packages/cassette"
|
|
42
44
|
},
|
|
45
|
+
"homepage": "https://cendor.ai/docs/cassette",
|
|
46
|
+
"bugs": {
|
|
47
|
+
"url": "https://github.com/cendorhq/cendor-libs-js/issues"
|
|
48
|
+
},
|
|
43
49
|
"publishConfig": {
|
|
44
50
|
"access": "public"
|
|
45
51
|
}
|