traicebox 0.1.4 → 0.1.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.
Files changed (3) hide show
  1. package/README.md +17 -7
  2. package/dist/index.js +546 -3368
  3. package/package.json +3 -4
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Traicebox
2
2
 
3
- **Traicebox** is a zero-config local developer stack for tracing and session tracking around LLM and AI model workflows. It enables developers to have a working local tracing and inspection setup within minutes.
3
+ **Traicebox** is a local developer stack for tracing and session tracking around LLM and AI model workflows. It enables developers to have a working local tracing and inspection setup within minutes.
4
4
 
5
5
  ### Key Use Cases
6
6
 
@@ -77,6 +77,15 @@ Initialize the Traicebox home directory:
77
77
  traicebox setup
78
78
  ```
79
79
 
80
+ If the home directory already exists and you want to reset it to defaults, use the `--force` flag:
81
+
82
+ ```bash
83
+ traicebox setup --force
84
+ ```
85
+
86
+ > [!CAUTION]
87
+ > `--force` permanently deletes the existing home directory and all its contents, including your `traicebox.yaml` configuration and LiteLLM model list.
88
+
80
89
  ### 2. Import Models
81
90
 
82
91
  Before starting the stack, you need to import your available models into LiteLLM. Traicebox requires an endpoint URL or alias to fetch models from.
@@ -184,12 +193,13 @@ Refresh the [Langfuse sessions page](http://langfuse.localhost:5483/project/loca
184
193
 
185
194
  ### Other Useful Commands
186
195
 
187
- | Command | Description |
188
- | :----------------------- | :---------------------------------------------- |
189
- | `traicebox stop` | Stop the stack. |
190
- | `traicebox restart` | Recreate and restart the stack. |
191
- | `traicebox destroy` | Remove the stack and delete local data volumes. |
192
- | `traicebox models clear` | Clear the custom model list from LiteLLM. |
196
+ | Command | Description |
197
+ | :------------------------ | :------------------------------------------------------------ |
198
+ | `traicebox stop` | Stop the stack. |
199
+ | `traicebox restart` | Recreate and restart the stack. |
200
+ | `traicebox destroy` | Remove the stack and delete local data volumes. |
201
+ | `traicebox setup --force` | Reset the home directory to defaults (deletes existing data). |
202
+ | `traicebox models clear` | Clear the custom model list from LiteLLM. |
193
203
 
194
204
  For more information on available commands and options, run `traicebox --help`.
195
205