@pi-unipi/core 2.17.0 → 2.18.0
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/fusion-status.ts +6 -0
- package/package.json +1 -1
package/fusion-status.ts
CHANGED
|
@@ -18,6 +18,12 @@ export interface SharedFusionStatus {
|
|
|
18
18
|
sidekickEffort: string;
|
|
19
19
|
/** Estimated savings compared with pricing all sidekick usage at lead rates. */
|
|
20
20
|
savedUsd?: number;
|
|
21
|
+
/** A handoff is running on the sidekick right now. */
|
|
22
|
+
busy?: boolean;
|
|
23
|
+
/** Tool calls made directly by the lead in this session while Fusion was active. */
|
|
24
|
+
leadToolCalls?: number;
|
|
25
|
+
/** Tool calls made by the sidekick across all handoffs (completed + in flight). */
|
|
26
|
+
sidekickToolCalls?: number;
|
|
21
27
|
}
|
|
22
28
|
|
|
23
29
|
const KEY = Symbol.for("unipi.fusion.status");
|