autotel-devtools 28.0.0 → 28.0.2
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 +4 -1
- package/dist/cli.cjs +2 -2
- package/dist/cli.js +2 -2
- package/dist/fullpage.global.js +34 -34
- package/dist/genai/index.cjs +49 -5
- package/dist/genai/index.js +49 -5
- package/dist/{grpc-DB8OLUPR.cjs → grpc-CU54oyWh.cjs} +1 -1
- package/dist/{grpc-BhGs5AGf.js → grpc-D0ZTTAmW.js} +1 -1
- package/dist/{http-DD3SVQJp.cjs → http-B1v_UPgL.cjs} +4 -2
- package/dist/{http-CHt5okyc.js → http-CBOtd0Yi.js} +4 -2
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/server/index.cjs +2 -2
- package/dist/server/index.js +2 -2
- package/dist/widget.global.js +15 -15
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -189,7 +189,10 @@ process. Point them at the bound port, or free the original.
|
|
|
189
189
|
|
|
190
190
|
When your app emits OpenTelemetry GenAI spans (Vercel AI SDK, Pydantic AI, OpenAI
|
|
191
191
|
Agents, Anthropic, Google GenAI, LangChain, …), the **GenAI** tab gives two extras
|
|
192
|
-
on top of the per-span detail
|
|
192
|
+
on top of the per-span detail. Each row is titled `provider/model`; agent
|
|
193
|
+
(`invoke_agent`) and tool (`execute_tool`) spans carry no model, so they are
|
|
194
|
+
titled by agent or tool name instead, and the tool name is searchable in the
|
|
195
|
+
filter box.
|
|
193
196
|
|
|
194
197
|
- A **run summary strip** sits above the detail for any multi-span run: total
|
|
195
198
|
cost (table-priced; a trailing `+` marks a lower bound when some calls are
|
package/dist/cli.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
const require_http = require('./http-
|
|
2
|
+
const require_http = require('./http-B1v_UPgL.cjs');
|
|
3
3
|
const require_listen = require('./listen-l09RRHht.cjs');
|
|
4
|
-
const require_grpc = require('./grpc-
|
|
4
|
+
const require_grpc = require('./grpc-CU54oyWh.cjs');
|
|
5
5
|
let node_http = require("node:http");
|
|
6
6
|
let node_fs = require("node:fs");
|
|
7
7
|
let node_path = require("node:path");
|
package/dist/cli.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { a as probePortHolder, g as hostHeaderIsLoopback, l as DevtoolsServer, r as resolveSourceRoot, t as attachDevtoolsRoutes } from "./http-
|
|
2
|
+
import { a as probePortHolder, g as hostHeaderIsLoopback, l as DevtoolsServer, r as resolveSourceRoot, t as attachDevtoolsRoutes } from "./http-CBOtd0Yi.js";
|
|
3
3
|
import { t as listenLoopbackDualStack } from "./listen-D-lLgfro.js";
|
|
4
|
-
import { t as startOtlpGrpcReceiver } from "./grpc-
|
|
4
|
+
import { t as startOtlpGrpcReceiver } from "./grpc-D0ZTTAmW.js";
|
|
5
5
|
import { createServer } from "node:http";
|
|
6
6
|
import { readFileSync } from "node:fs";
|
|
7
7
|
import { dirname, resolve } from "node:path";
|