@cephalization/phoenix-insight 1.0.3 → 1.0.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/dist/cli.js +11 -10
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -3401,16 +3401,17 @@ Configuration:
|
|
|
3401
3401
|
Set PHOENIX_INSIGHT_CONFIG env var to override the default config location.
|
|
3402
3402
|
|
|
3403
3403
|
Examples:
|
|
3404
|
-
$ phoenix-insight
|
|
3405
|
-
$ phoenix-insight "What are the slowest traces?"
|
|
3406
|
-
$ phoenix-insight --interactive
|
|
3407
|
-
$ phoenix-insight --local "Show me error patterns"
|
|
3408
|
-
$ phoenix-insight --local --stream "Analyze recent experiments"
|
|
3409
|
-
$ phoenix-insight --config ./my-config.json "Analyze traces"
|
|
3410
|
-
$ phoenix-insight ui
|
|
3411
|
-
$ phoenix-insight ui --port 8080
|
|
3412
|
-
$ phoenix-insight ui --no-open
|
|
3413
|
-
$
|
|
3404
|
+
$ phoenix-insight # Start interactive mode
|
|
3405
|
+
$ phoenix-insight "What are the slowest traces?" # Single query (sandbox mode)
|
|
3406
|
+
$ phoenix-insight --interactive # Explicitly start interactive mode
|
|
3407
|
+
$ phoenix-insight --local "Show me error patterns" # Local mode with persistence
|
|
3408
|
+
$ phoenix-insight --local --stream "Analyze recent experiments" # Local mode with streaming
|
|
3409
|
+
$ phoenix-insight --config ./my-config.json "Analyze traces" # Use custom config file
|
|
3410
|
+
$ phoenix-insight ui # Start web UI on localhost:6007
|
|
3411
|
+
$ phoenix-insight ui --port 8080 # Start web UI on custom port
|
|
3412
|
+
$ phoenix-insight ui --no-open # Start web UI without opening browser
|
|
3413
|
+
$ opencode run "Analyze my spans" -f $(pxi snapshot latest)/_context.md # Analyze phoenix data with OpenCode agent
|
|
3414
|
+
$ phoenix-insight help # Show this help message
|
|
3414
3415
|
`
|
|
3415
3416
|
).hook("preAction", async (thisCommand) => {
|
|
3416
3417
|
const opts = thisCommand.opts();
|