@cat-factory/app 0.285.1 → 0.286.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/app/components/panels/ObservabilityPanel.vue +10 -1
- package/app/stores/observability.ts +4 -0
- package/i18n/locales/de.json +3 -1
- package/i18n/locales/en.json +3 -1
- package/i18n/locales/es.json +3 -1
- package/i18n/locales/fr.json +3 -1
- package/i18n/locales/he.json +3 -1
- package/i18n/locales/it.json +3 -1
- package/i18n/locales/ja.json +3 -1
- package/i18n/locales/pl.json +3 -1
- package/i18n/locales/tr.json +3 -1
- package/i18n/locales/uk.json +3 -1
- package/package.json +2 -2
|
@@ -873,7 +873,16 @@ function exportJson() {
|
|
|
873
873
|
<span :title="t('observability.call.transportVsExecution')">
|
|
874
874
|
{{ formatMs(c.overheadMs) }} / {{ formatMs(c.upstreamMs) }}
|
|
875
875
|
</span>
|
|
876
|
-
<UBadge
|
|
876
|
+
<UBadge
|
|
877
|
+
v-if="c.spendOnly"
|
|
878
|
+
color="neutral"
|
|
879
|
+
variant="subtle"
|
|
880
|
+
size="sm"
|
|
881
|
+
:title="t('observability.call.spendOnlyTitle')"
|
|
882
|
+
>
|
|
883
|
+
{{ t('observability.call.spendOnly') }}
|
|
884
|
+
</UBadge>
|
|
885
|
+
<UBadge v-else-if="!c.ok" color="error" variant="subtle" size="sm">
|
|
877
886
|
{{ c.httpStatus ?? t('observability.call.error') }}
|
|
878
887
|
</UBadge>
|
|
879
888
|
<UBadge
|
|
@@ -149,6 +149,10 @@ export const useObservabilityStore = defineStore('observability', () => {
|
|
|
149
149
|
// the harness's job-scoped counter, which a proxied call has no equivalent of. Null is
|
|
150
150
|
// what the stored row will say too, so the live row and the loaded one agree.
|
|
151
151
|
turnIndex: null,
|
|
152
|
+
// A live event is always a PROXIED call, and the proxy has no shortfall concept: it sees one
|
|
153
|
+
// HTTP call at a time and files it. Only a harness CLI's step-level remainder is spend-only,
|
|
154
|
+
// and that arrives through the stored row, never here.
|
|
155
|
+
spendOnly: false,
|
|
152
156
|
promptText: '',
|
|
153
157
|
promptPrefixCount: 0,
|
|
154
158
|
promptHash: '',
|
package/i18n/locales/de.json
CHANGED
|
@@ -3844,7 +3844,9 @@
|
|
|
3844
3844
|
"prompt": "Prompt",
|
|
3845
3845
|
"promptPrefixOmitted": "(nur neue Nachrichten: {count} frühere ausgelassen)",
|
|
3846
3846
|
"response": "Antwort",
|
|
3847
|
-
"reasoning": "Reasoning"
|
|
3847
|
+
"reasoning": "Reasoning",
|
|
3848
|
+
"spendOnly": "kein Aufruf",
|
|
3849
|
+
"spendOnlyTitle": "Tokenverbrauch, den der Harness gemeldet hat, ohne ihn einer Runde zuzuordnen. Zaehlt in den Token-Summen dieses Laufs und in keiner Aufrufzahl."
|
|
3848
3850
|
},
|
|
3849
3851
|
"context": {
|
|
3850
3852
|
"injectedFiles": "Injizierte Kontextdateien",
|
package/i18n/locales/en.json
CHANGED
|
@@ -1895,7 +1895,9 @@
|
|
|
1895
1895
|
"prompt": "Prompt",
|
|
1896
1896
|
"promptPrefixOmitted": "(new messages only: {count} earlier omitted)",
|
|
1897
1897
|
"response": "Response",
|
|
1898
|
-
"reasoning": "Reasoning"
|
|
1898
|
+
"reasoning": "Reasoning",
|
|
1899
|
+
"spendOnly": "not a call",
|
|
1900
|
+
"spendOnlyTitle": "Token spend the harness reported without attributing it to a turn. Counted in this run's token totals and in no call count."
|
|
1899
1901
|
},
|
|
1900
1902
|
"context": {
|
|
1901
1903
|
"injectedFiles": "Injected context files",
|
package/i18n/locales/es.json
CHANGED
|
@@ -1791,7 +1791,9 @@
|
|
|
1791
1791
|
"prompt": "Prompt",
|
|
1792
1792
|
"promptPrefixOmitted": "(solo mensajes nuevos: {count} anteriores omitidos)",
|
|
1793
1793
|
"response": "Respuesta",
|
|
1794
|
-
"reasoning": "Razonamiento"
|
|
1794
|
+
"reasoning": "Razonamiento",
|
|
1795
|
+
"spendOnly": "no es una llamada",
|
|
1796
|
+
"spendOnlyTitle": "Consumo de tokens que el harness informo sin atribuirlo a ningun turno. Cuenta en los totales de tokens de esta ejecucion y en ningun recuento de llamadas."
|
|
1795
1797
|
},
|
|
1796
1798
|
"context": {
|
|
1797
1799
|
"injectedFiles": "Archivos de contexto inyectados",
|
package/i18n/locales/fr.json
CHANGED
|
@@ -1791,7 +1791,9 @@
|
|
|
1791
1791
|
"prompt": "Prompt",
|
|
1792
1792
|
"promptPrefixOmitted": "(nouveaux messages uniquement : {count} antérieurs omis)",
|
|
1793
1793
|
"response": "Réponse",
|
|
1794
|
-
"reasoning": "Raisonnement"
|
|
1794
|
+
"reasoning": "Raisonnement",
|
|
1795
|
+
"spendOnly": "pas un appel",
|
|
1796
|
+
"spendOnlyTitle": "Consommation de jetons signalee par le harness sans etre attribuee a un tour. Comptee dans les totaux de jetons de cette execution et dans aucun nombre d'appels."
|
|
1795
1797
|
},
|
|
1796
1798
|
"context": {
|
|
1797
1799
|
"injectedFiles": "Fichiers de contexte injectés",
|
package/i18n/locales/he.json
CHANGED
|
@@ -1791,7 +1791,9 @@
|
|
|
1791
1791
|
"prompt": "פרומפט",
|
|
1792
1792
|
"promptPrefixOmitted": "(הודעות חדשות בלבד: {count} מוקדמות יותר הושמטו)",
|
|
1793
1793
|
"response": "תגובה",
|
|
1794
|
-
"reasoning": "חשיבה"
|
|
1794
|
+
"reasoning": "חשיבה",
|
|
1795
|
+
"spendOnly": "לא קריאה",
|
|
1796
|
+
"spendOnlyTitle": "צריכת טוקנים שה-harness דיווח עליה בלי לשייך אותה לתור כלשהו. נספרת בסכומי הטוקנים של ריצה זו ולא בשום ספירת קריאות."
|
|
1795
1797
|
},
|
|
1796
1798
|
"context": {
|
|
1797
1799
|
"injectedFiles": "קבצי הקשר שהוזרקו",
|
package/i18n/locales/it.json
CHANGED
|
@@ -3844,7 +3844,9 @@
|
|
|
3844
3844
|
"prompt": "Prompt",
|
|
3845
3845
|
"promptPrefixOmitted": "(solo nuovi messaggi: {count} precedenti omessi)",
|
|
3846
3846
|
"response": "Risposta",
|
|
3847
|
-
"reasoning": "Ragionamento"
|
|
3847
|
+
"reasoning": "Ragionamento",
|
|
3848
|
+
"spendOnly": "non e una chiamata",
|
|
3849
|
+
"spendOnlyTitle": "Consumo di token che l'harness ha riportato senza attribuirlo a un turno. Conta nei totali di token di questa esecuzione e in nessun conteggio di chiamate."
|
|
3848
3850
|
},
|
|
3849
3851
|
"context": {
|
|
3850
3852
|
"injectedFiles": "File di contesto iniettati",
|
package/i18n/locales/ja.json
CHANGED
|
@@ -1791,7 +1791,9 @@
|
|
|
1791
1791
|
"prompt": "プロンプト",
|
|
1792
1792
|
"promptPrefixOmitted": "(新規メッセージのみ: 以前の {count} 件を省略)",
|
|
1793
1793
|
"response": "レスポンス",
|
|
1794
|
-
"reasoning": "推論"
|
|
1794
|
+
"reasoning": "推論",
|
|
1795
|
+
"spendOnly": "呼び出しではありません",
|
|
1796
|
+
"spendOnlyTitle": "ハーネスがターンに紐付けずに報告したトークン消費です。この実行のトークン合計には含まれ、呼び出し数には含まれません。"
|
|
1795
1797
|
},
|
|
1796
1798
|
"context": {
|
|
1797
1799
|
"injectedFiles": "注入されたコンテキストファイル",
|
package/i18n/locales/pl.json
CHANGED
|
@@ -1791,7 +1791,9 @@
|
|
|
1791
1791
|
"prompt": "Prompt",
|
|
1792
1792
|
"promptPrefixOmitted": "(tylko nowe wiadomości: {count} wcześniejszych pominięto)",
|
|
1793
1793
|
"response": "Odpowiedź",
|
|
1794
|
-
"reasoning": "Rozumowanie"
|
|
1794
|
+
"reasoning": "Rozumowanie",
|
|
1795
|
+
"spendOnly": "to nie wywolanie",
|
|
1796
|
+
"spendOnlyTitle": "Zuzycie tokenow zgloszone przez harness bez przypisania do tury. Liczone w sumach tokenow tego przebiegu i w zadnej liczbie wywolan."
|
|
1795
1797
|
},
|
|
1796
1798
|
"context": {
|
|
1797
1799
|
"injectedFiles": "Wstrzyknięte pliki kontekstu",
|
package/i18n/locales/tr.json
CHANGED
|
@@ -1791,7 +1791,9 @@
|
|
|
1791
1791
|
"prompt": "İstem",
|
|
1792
1792
|
"promptPrefixOmitted": "(yalnızca yeni mesajlar: {count} öncekisi atlandı)",
|
|
1793
1793
|
"response": "Yanıt",
|
|
1794
|
-
"reasoning": "Akıl yürütme"
|
|
1794
|
+
"reasoning": "Akıl yürütme",
|
|
1795
|
+
"spendOnly": "cagri degil",
|
|
1796
|
+
"spendOnlyTitle": "Harness'in bir tura atfetmeden bildirdigi token harcamasi. Bu calismanin token toplamlarina dahildir, cagri sayisina dahil degildir."
|
|
1795
1797
|
},
|
|
1796
1798
|
"context": {
|
|
1797
1799
|
"injectedFiles": "Eklenen bağlam dosyaları",
|
package/i18n/locales/uk.json
CHANGED
|
@@ -1791,7 +1791,9 @@
|
|
|
1791
1791
|
"prompt": "Запит",
|
|
1792
1792
|
"promptPrefixOmitted": "(лише нові повідомлення: {count} раніших пропущено)",
|
|
1793
1793
|
"response": "Відповідь",
|
|
1794
|
-
"reasoning": "Міркування"
|
|
1794
|
+
"reasoning": "Міркування",
|
|
1795
|
+
"spendOnly": "не виклик",
|
|
1796
|
+
"spendOnlyTitle": "Витрати токенів, які harness повідомив, не пов'язавши їх із жодним ходом. Враховуються в загальних сумах токенів цього запуску і в жодному підрахунку викликів."
|
|
1795
1797
|
},
|
|
1796
1798
|
"context": {
|
|
1797
1799
|
"injectedFiles": "Впроваджені файли контексту",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cat-factory/app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.286.0",
|
|
4
4
|
"description": "Reusable Nuxt layer for the Agent Architecture Board SPA (components, stores, composables, pages). Consume it from a thin deployment app via `extends: ['@cat-factory/app']` and point it at your backend with NUXT_PUBLIC_API_BASE. See deploy/frontend for an example.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"access": "public"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@cat-factory/contracts": "0.
|
|
21
|
+
"@cat-factory/contracts": "0.329.0",
|
|
22
22
|
"@modular-frontend/core": "0.6.0",
|
|
23
23
|
"@modular-vue/core": "^1.5.0",
|
|
24
24
|
"@modular-vue/journeys": "^1.4.0",
|