@ai-sdk/devtools 1.0.5 → 1.0.7

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 CHANGED
@@ -60,13 +60,19 @@ const result = streamText({
60
60
  ### 2. Run the viewer
61
61
 
62
62
  ```bash
63
- npx @ai-sdk/devtools
63
+ npx @ai-sdk/devtools@latest
64
64
  ```
65
65
 
66
66
  Open http://localhost:4983 to view your AI SDK interactions.
67
67
 
68
+ The viewer uses the dark theme by default. Use the theme button in the header to
69
+ switch between dark and light themes. The browser remembers your selection for
70
+ the next time you open the viewer at the same origin.
71
+
68
72
  If you are using a monorepo, start DevTools from the same workspace where your
69
- AI SDK code runs.
73
+ AI SDK code runs. The explicit `@latest` tag ensures that `npx` installs an
74
+ executable copy instead of selecting a transitive dependency whose binary is
75
+ not linked into that workspace.
70
76
 
71
77
  ## How it works
72
78