@markusylisiurunen/tau 0.1.37 → 0.1.38
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/app.js +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/dist/app.js
CHANGED
|
@@ -286,7 +286,7 @@ export class ChatApp {
|
|
|
286
286
|
? this.getContextWindowForLastTurn(last)
|
|
287
287
|
: this.currentPersona.model.contextWindow;
|
|
288
288
|
const { input, read, write, output } = this.getSessionTotals();
|
|
289
|
-
const stats =
|
|
289
|
+
const stats = `i${formatTokenWindow(input)} r${formatTokenWindow(read)} w${formatTokenWindow(write)} o${formatTokenWindow(output)}`;
|
|
290
290
|
const promptTokensSent = last
|
|
291
291
|
? (last.usage?.input ?? 0) + (last.usage?.cacheRead ?? 0) + (last.usage?.cacheWrite ?? 0)
|
|
292
292
|
: 0;
|
package/dist/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const APP_VERSION = "0.1.
|
|
1
|
+
export const APP_VERSION = "0.1.38";
|
|
2
2
|
//# sourceMappingURL=version.js.map
|