ework-web 0.10.91 → 0.10.92
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/package.json +1 -1
- package/src/pi-sessions.ts +6 -1
package/package.json
CHANGED
package/src/pi-sessions.ts
CHANGED
|
@@ -82,7 +82,11 @@ function resultText(output: unknown): string {
|
|
|
82
82
|
|
|
83
83
|
function toolCard(t: PiToolCall): string {
|
|
84
84
|
const argStr = t.args.length > 600 ? t.args.slice(0, 600) + "…" : t.args;
|
|
85
|
-
|
|
85
|
+
const argsBlock = t.args && t.args !== "{}"
|
|
86
|
+
? `<div class="pi-io-label">完整参数</div><pre>${escapeHtml(t.args.length > 20000 ? t.args.slice(0, 20000) + "\n…(截断)" : t.args)}</pre>`
|
|
87
|
+
: "";
|
|
88
|
+
const resultBlock = `<div class="pi-io-label">返回</div><pre>${escapeHtml(t.result ?? "(无返回)")}</pre>`;
|
|
89
|
+
return `<details class="pi-tool"><summary>🔧 ${escapeHtml(t.name)}<span class="pi-tool-args">${escapeHtml(argStr)}</span></summary><div class="tool-io">${argsBlock}${resultBlock}</div></details>`;
|
|
86
90
|
}
|
|
87
91
|
|
|
88
92
|
function renderCard(c: PiCard): string {
|
|
@@ -234,6 +238,7 @@ export function buildPiSessionPage(sessionId: string, limit: number, asc = false
|
|
|
234
238
|
.mb .tool-io{position:relative;padding:.5rem .6rem}
|
|
235
239
|
.mb .tool-io pre{margin:.2rem 0}
|
|
236
240
|
.pi-tool summary .pi-tool-args{font-family:ui-monospace,monospace;font-size:11px;color:var(--text-muted);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:60%}
|
|
241
|
+
.pi-io-label{font-size:11px;color:var(--text-muted);margin:6px 0 2px;font-weight:600}
|
|
237
242
|
.more-bar{max-width:900px;margin:1rem auto 0;padding:.8rem 1rem;text-align:center;border:1px dashed var(--border);border-radius:8px;color:var(--text-muted);font-size:13px}
|
|
238
243
|
.more-bar a{font-weight:600}
|
|
239
244
|
</style></head><body>
|