@letta-ai/letta-code 0.19.5 → 0.19.6
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/letta.js +677 -755
- package/package.json +2 -2
- package/scripts/latency-benchmark.ts +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@letta-ai/letta-code",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.6",
|
|
4
4
|
"description": "Letta Code is a CLI tool for interacting with stateful Letta agents from the terminal.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@letta-ai/letta-client": "
|
|
36
|
+
"@letta-ai/letta-client": "1.8.0",
|
|
37
37
|
"glob": "^13.0.0",
|
|
38
38
|
"highlight.js": "^11.11.1",
|
|
39
39
|
"ink-link": "^5.0.0",
|
|
@@ -61,7 +61,6 @@ const SCENARIOS: ScenarioConfig[] = [
|
|
|
61
61
|
args: [
|
|
62
62
|
"-p",
|
|
63
63
|
"What is 3+3? Reply with just the number.",
|
|
64
|
-
"--continue",
|
|
65
64
|
"--yolo",
|
|
66
65
|
"--output-format",
|
|
67
66
|
"json",
|
|
@@ -73,7 +72,6 @@ const SCENARIOS: ScenarioConfig[] = [
|
|
|
73
72
|
args: [
|
|
74
73
|
"-p",
|
|
75
74
|
"What is 5+5? Reply with just the number.",
|
|
76
|
-
"--continue",
|
|
77
75
|
"--yolo",
|
|
78
76
|
"--output-format",
|
|
79
77
|
"json",
|