lettactl 0.5.19 → 0.5.20
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 +13 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -32,10 +32,20 @@ For DevOps workflows
|
|
|
32
32
|
```bash
|
|
33
33
|
# Install globally from npm
|
|
34
34
|
npm install -g lettactl
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
### For Letta Cloud
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
export LETTA_BASE_URL=https://api.letta.com
|
|
41
|
+
export LETTA_API_KEY=your_api_key # Get from https://app.letta.com
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
### For Self-Hosting
|
|
35
45
|
|
|
36
|
-
|
|
37
|
-
export LETTA_BASE_URL=http://localhost:8283
|
|
38
|
-
|
|
46
|
+
```bash
|
|
47
|
+
export LETTA_BASE_URL=http://localhost:8283
|
|
48
|
+
# API key is optional for self-hosting
|
|
39
49
|
```
|
|
40
50
|
|
|
41
51
|
### Your First Fleet
|