@cat-factory/app 0.292.0 → 0.293.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/bootstrap/AdoptionReviewModal.vue +88 -0
- package/i18n/locales/de.json +16 -0
- package/i18n/locales/en.json +16 -0
- package/i18n/locales/es.json +16 -0
- package/i18n/locales/fr.json +16 -0
- package/i18n/locales/he.json +16 -0
- package/i18n/locales/it.json +16 -0
- package/i18n/locales/ja.json +16 -0
- package/i18n/locales/pl.json +16 -0
- package/i18n/locales/tr.json +16 -0
- package/i18n/locales/uk.json +16 -0
- package/package.json +2 -2
|
@@ -85,6 +85,45 @@ const remaining = computed(() => decisions.value.filter((d) => !touched.value.ha
|
|
|
85
85
|
// finish a monorepo bootstrap at all.
|
|
86
86
|
const canSubmit = computed(() => remaining.value === 0)
|
|
87
87
|
|
|
88
|
+
/**
|
|
89
|
+
* What the survey actually read, for the disclosure beside the plan.
|
|
90
|
+
*
|
|
91
|
+
* Shown at all because the evidence set is no longer something the platform declared in advance:
|
|
92
|
+
* the model chose most of it, so "what was this suggestion built from" is a question only the
|
|
93
|
+
* transcript answers. Split by ORIGIN, because a reviewer weighing a thin plan needs to know
|
|
94
|
+
* whether the read was thin or the reading was.
|
|
95
|
+
*
|
|
96
|
+
* `reads` is nullable because the list projection withholds the transcript once a run is past its
|
|
97
|
+
* review, and this modal opens only for a run that is still awaiting one, which is exactly the
|
|
98
|
+
* case the projection keeps. So the fallback below is unreachable rather than a silent default.
|
|
99
|
+
*/
|
|
100
|
+
const surveyReads = computed(() => plan.value?.survey.reads ?? [])
|
|
101
|
+
const readSummary = computed(() => ({
|
|
102
|
+
read: surveyReads.value.filter((entry) => entry.outcome === 'read').length,
|
|
103
|
+
byModel: surveyReads.value.filter((entry) => entry.origin === 'model' && entry.outcome === 'read')
|
|
104
|
+
.length,
|
|
105
|
+
missed: surveyReads.value.filter((entry) => entry.outcome !== 'read').length,
|
|
106
|
+
}))
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* How many reads the transcript could not hold.
|
|
110
|
+
*
|
|
111
|
+
* The summary above counts the ARRAY, which is capped, so a survey that made 140 reads and kept
|
|
112
|
+
* 96 would otherwise read as a survey that made 96. Shown for the same reason `exhausted` is: a
|
|
113
|
+
* record with a missing tail and a complete one lead a reviewer to opposite conclusions about how
|
|
114
|
+
* much of the monorepo this suggestion was built from.
|
|
115
|
+
*/
|
|
116
|
+
const recordsDropped = computed(() => plan.value?.survey.exploration.recordsDropped ?? 0)
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* Which budget the exploration ran out of, or null when it did not.
|
|
120
|
+
*
|
|
121
|
+
* Surfaced rather than left in the transcript: a survey that stopped because the model had seen
|
|
122
|
+
* enough and one that stopped at a ceiling look identical in a list of paths, and only the second
|
|
123
|
+
* means the plan may be missing areas nobody decided not to look at.
|
|
124
|
+
*/
|
|
125
|
+
const exhausted = computed(() => plan.value?.survey.exploration.exhausted ?? null)
|
|
126
|
+
|
|
88
127
|
/** The monorepo this service is landing in, for the header line. */
|
|
89
128
|
const target = computed(() => {
|
|
90
129
|
const monorepo = props.job.monorepo
|
|
@@ -160,6 +199,55 @@ watch(open, (isOpen) => {
|
|
|
160
199
|
</p>
|
|
161
200
|
</div>
|
|
162
201
|
|
|
202
|
+
<!-- What the survey read, on BOTH paths. The model chose most of the evidence set, so
|
|
203
|
+
"what was this built from" is a question only the transcript answers, and an
|
|
204
|
+
exhausted budget is called out rather than left for someone to infer from a short
|
|
205
|
+
list: it is the difference between a thin read and a thin reading. -->
|
|
206
|
+
<div v-if="surveyReads.length" class="space-y-2 text-xs">
|
|
207
|
+
<p class="text-slate-400">
|
|
208
|
+
{{
|
|
209
|
+
t('bootstrap.adoption.survey.summary', {
|
|
210
|
+
read: readSummary.read,
|
|
211
|
+
byModel: readSummary.byModel,
|
|
212
|
+
})
|
|
213
|
+
}}
|
|
214
|
+
</p>
|
|
215
|
+
<p v-if="readSummary.missed > 0" class="text-slate-500">
|
|
216
|
+
{{ t('bootstrap.adoption.survey.missed', { count: readSummary.missed }) }}
|
|
217
|
+
</p>
|
|
218
|
+
<p v-if="exhausted" class="text-amber-300/90">
|
|
219
|
+
{{ t(`bootstrap.adoption.survey.exhausted.${exhausted}`) }}
|
|
220
|
+
</p>
|
|
221
|
+
<p v-if="recordsDropped > 0" class="text-amber-300/90">
|
|
222
|
+
{{ t('bootstrap.adoption.survey.truncated', { count: recordsDropped }) }}
|
|
223
|
+
</p>
|
|
224
|
+
<details>
|
|
225
|
+
<summary class="cursor-pointer text-slate-500 hover:text-slate-300">
|
|
226
|
+
{{ t('bootstrap.adoption.survey.show') }}
|
|
227
|
+
</summary>
|
|
228
|
+
<ul class="mt-2 space-y-1">
|
|
229
|
+
<!-- Keyed by POSITION: the transcript is append-only and rendered in order, and
|
|
230
|
+
the same path legitimately appears twice (a body refused by the seed and then
|
|
231
|
+
served to the model, a path the model retried). Keying on the path patched
|
|
232
|
+
those two rows against each other and rendered a note beside the wrong one. -->
|
|
233
|
+
<li
|
|
234
|
+
v-for="(entry, index) in surveyReads"
|
|
235
|
+
:key="index"
|
|
236
|
+
class="flex items-baseline gap-2"
|
|
237
|
+
>
|
|
238
|
+
<span
|
|
239
|
+
class="shrink-0 font-mono text-[10px] uppercase"
|
|
240
|
+
:class="entry.outcome === 'read' ? 'text-slate-500' : 'text-amber-400/80'"
|
|
241
|
+
>
|
|
242
|
+
{{ t(`bootstrap.adoption.survey.outcome.${entry.outcome}`) }}
|
|
243
|
+
</span>
|
|
244
|
+
<span class="font-mono text-slate-400">{{ entry.path }}</span>
|
|
245
|
+
<span v-if="entry.note" class="text-slate-600">{{ entry.note }}</span>
|
|
246
|
+
</li>
|
|
247
|
+
</ul>
|
|
248
|
+
</details>
|
|
249
|
+
</div>
|
|
250
|
+
|
|
163
251
|
<!-- The reviewer's own instructions, on BOTH paths. With no suggestion to answer this is
|
|
164
252
|
the only thing they can say, and it reaches the agent's brief verbatim. -->
|
|
165
253
|
<UFormField
|
package/i18n/locales/de.json
CHANGED
|
@@ -5185,6 +5185,22 @@
|
|
|
5185
5185
|
"budget_exhausted": "Dieser Workspace hat sein Modell-Budget überschritten, daher hat die Plattform keinen Übernahmevorschlag bezahlt. Die Entscheidungen liegen weiterhin bei dir: beschreibe unten in den Notizen, was du möchtest, oder erhöhe das Budget und starte den Lauf erneut.",
|
|
5186
5186
|
"analysis_unusable": "Die Analyse lieferte keinen brauchbaren Vorschlag. Du kannst unten trotzdem beschreiben, was du möchtest."
|
|
5187
5187
|
},
|
|
5188
|
+
"survey": {
|
|
5189
|
+
"summary": "Dieser Vorschlag entstand aus {read} Dateien und Verzeichnislisten; {byModel} davon hat das Modell selbst angefordert.",
|
|
5190
|
+
"missed": "Lesevorgänge ohne Ergebnis: {count}. Aufklappen, um zu sehen, welche.",
|
|
5191
|
+
"truncated": "Lesevorgänge, die der Datensatz nicht behalten konnte: {count}. Die Erhebung hat sie durchgeführt; der Liste unten fehlt ihr Ende.",
|
|
5192
|
+
"show": "Alle Lesevorgänge der Erhebung anzeigen",
|
|
5193
|
+
"exhausted": {
|
|
5194
|
+
"calls": "Der Erhebung gingen die Lesevorgänge aus, bevor sie fertig war; möglicherweise wurden nicht alle Bereiche geprüft. Starte den Lauf erneut für eine vollständigere Erhebung.",
|
|
5195
|
+
"chars": "Der Erhebung ging das Inhaltsbudget aus, bevor sie fertig war; möglicherweise wurden nicht alle Bereiche geprüft. Starte den Lauf erneut für eine vollständigere Erhebung."
|
|
5196
|
+
},
|
|
5197
|
+
"outcome": {
|
|
5198
|
+
"read": "gelesen",
|
|
5199
|
+
"absent": "nicht vorhanden",
|
|
5200
|
+
"unreadable": "fehlgeschlagen",
|
|
5201
|
+
"refused": "abgelehnt"
|
|
5202
|
+
}
|
|
5203
|
+
},
|
|
5188
5204
|
"notes": {
|
|
5189
5205
|
"label": "Hinweise zum gesamten Service",
|
|
5190
5206
|
"description": "Wird zusammen mit deinen Entscheidungen wörtlich an den Agenten übergeben.",
|
package/i18n/locales/en.json
CHANGED
|
@@ -7367,6 +7367,22 @@
|
|
|
7367
7367
|
"budget_exhausted": "This workspace is over its model budget, so the platform did not pay for an adoption suggestion. The decisions are still yours: describe what you want in the notes below, or raise the budget and retry the run.",
|
|
7368
7368
|
"analysis_unusable": "The adoption survey did not return a usable suggestion. You can still describe what you want in the notes below."
|
|
7369
7369
|
},
|
|
7370
|
+
"survey": {
|
|
7371
|
+
"summary": "This suggestion was built from {read} files and listings; the model asked for {byModel} of them.",
|
|
7372
|
+
"missed": "Reads that produced nothing: {count}. Expand to see which.",
|
|
7373
|
+
"truncated": "Reads the record could not keep: {count}. The survey made them; the list below is missing its tail.",
|
|
7374
|
+
"show": "Show every read the survey made",
|
|
7375
|
+
"exhausted": {
|
|
7376
|
+
"calls": "The survey ran out of reads before it stopped looking, so it may not have checked every area. Retry the run for a fuller read.",
|
|
7377
|
+
"chars": "The survey ran out of its content budget before it stopped looking, so it may not have checked every area. Retry the run for a fuller read."
|
|
7378
|
+
},
|
|
7379
|
+
"outcome": {
|
|
7380
|
+
"read": "read",
|
|
7381
|
+
"absent": "absent",
|
|
7382
|
+
"unreadable": "failed",
|
|
7383
|
+
"refused": "refused"
|
|
7384
|
+
}
|
|
7385
|
+
},
|
|
7370
7386
|
"notes": {
|
|
7371
7387
|
"label": "Notes for the whole service",
|
|
7372
7388
|
"description": "Passed to the agent verbatim, alongside your decisions.",
|
package/i18n/locales/es.json
CHANGED
|
@@ -7047,6 +7047,22 @@
|
|
|
7047
7047
|
"budget_exhausted": "Este espacio de trabajo ha superado su presupuesto de modelos, así que la plataforma no pagó por una sugerencia de adopción. Las decisiones siguen siendo tuyas: describe lo que quieres en las notas de abajo, o aumenta el presupuesto y reintenta la ejecución.",
|
|
7048
7048
|
"analysis_unusable": "El análisis no devolvió una sugerencia utilizable. Aun así puedes describir lo que quieres en las notas."
|
|
7049
7049
|
},
|
|
7050
|
+
"survey": {
|
|
7051
|
+
"summary": "Esta sugerencia se construyó a partir de {read} archivos y listados; el modelo pidió {byModel} de ellos.",
|
|
7052
|
+
"missed": "Lecturas que no devolvieron nada: {count}. Despliega para ver cuáles.",
|
|
7053
|
+
"truncated": "Lecturas que el registro no pudo conservar: {count}. El sondeo las hizo; a la lista de abajo le falta el final.",
|
|
7054
|
+
"show": "Mostrar todas las lecturas del sondeo",
|
|
7055
|
+
"exhausted": {
|
|
7056
|
+
"calls": "El sondeo agotó sus lecturas antes de terminar, así que puede no haber revisado todas las áreas. Reintenta la ejecución para una lectura más completa.",
|
|
7057
|
+
"chars": "El sondeo agotó su presupuesto de contenido antes de terminar, así que puede no haber revisado todas las áreas. Reintenta la ejecución para una lectura más completa."
|
|
7058
|
+
},
|
|
7059
|
+
"outcome": {
|
|
7060
|
+
"read": "leído",
|
|
7061
|
+
"absent": "ausente",
|
|
7062
|
+
"unreadable": "falló",
|
|
7063
|
+
"refused": "rechazado"
|
|
7064
|
+
}
|
|
7065
|
+
},
|
|
7050
7066
|
"notes": {
|
|
7051
7067
|
"label": "Notas para todo el servicio",
|
|
7052
7068
|
"description": "Se pasan al agente literalmente, junto con tus decisiones.",
|
package/i18n/locales/fr.json
CHANGED
|
@@ -7047,6 +7047,22 @@
|
|
|
7047
7047
|
"budget_exhausted": "Cet espace de travail a dépassé son budget de modèles, la plateforme n'a donc pas payé de suggestion d'adoption. Les décisions vous appartiennent toujours : décrivez ce que vous voulez dans les notes ci-dessous, ou augmentez le budget et relancez l'exécution.",
|
|
7048
7048
|
"analysis_unusable": "L’analyse n’a pas renvoyé de suggestion exploitable. Vous pouvez tout de même décrire ce que vous voulez dans les notes."
|
|
7049
7049
|
},
|
|
7050
|
+
"survey": {
|
|
7051
|
+
"summary": "Cette suggestion s’appuie sur {read} fichiers et listes de répertoires ; le modèle en a demandé {byModel} lui-même.",
|
|
7052
|
+
"missed": "Lectures sans résultat : {count}. Déplie pour voir lesquelles.",
|
|
7053
|
+
"truncated": "Lectures que le relevé n’a pas pu conserver : {count}. L’étude les a faites ; la fin de la liste ci-dessous manque.",
|
|
7054
|
+
"show": "Afficher toutes les lectures effectuées",
|
|
7055
|
+
"exhausted": {
|
|
7056
|
+
"calls": "L’étude a épuisé ses lectures avant d’avoir fini, elle n’a donc peut-être pas vérifié toutes les zones. Relance l’exécution pour une lecture plus complète.",
|
|
7057
|
+
"chars": "L’étude a épuisé son budget de contenu avant d’avoir fini, elle n’a donc peut-être pas vérifié toutes les zones. Relance l’exécution pour une lecture plus complète."
|
|
7058
|
+
},
|
|
7059
|
+
"outcome": {
|
|
7060
|
+
"read": "lu",
|
|
7061
|
+
"absent": "absent",
|
|
7062
|
+
"unreadable": "échec",
|
|
7063
|
+
"refused": "refusé"
|
|
7064
|
+
}
|
|
7065
|
+
},
|
|
7050
7066
|
"notes": {
|
|
7051
7067
|
"label": "Notes pour l’ensemble du service",
|
|
7052
7068
|
"description": "Transmises telles quelles à l’agent, avec vos décisions.",
|
package/i18n/locales/he.json
CHANGED
|
@@ -7047,6 +7047,22 @@
|
|
|
7047
7047
|
"budget_exhausted": "מרחב העבודה הזה חרג מתקציב המודלים, ולכן הפלטפורמה לא שילמה עבור הצעת אימוץ. ההחלטות עדיין שלך: תאר בהערות למטה מה נדרש, או הגדל את התקציב והרץ שוב.",
|
|
7048
7048
|
"analysis_unusable": "הסקר לא החזיר הצעה שמישה. עדיין אפשר לתאר בהערות למטה מה אתה רוצה."
|
|
7049
7049
|
},
|
|
7050
|
+
"survey": {
|
|
7051
|
+
"summary": "ההצעה הזאת נבנתה מתוך {read} קבצים ורשימות תיקיות; המודל ביקש {byModel} מהם בעצמו.",
|
|
7052
|
+
"missed": "קריאות שלא החזירו דבר: {count}. פתחו כדי לראות אילו.",
|
|
7053
|
+
"truncated": "קריאות שהתיעוד לא הצליח לשמור: {count}. הסקר ביצע אותן; לרשימה שלמטה חסר הסוף.",
|
|
7054
|
+
"show": "הצגת כל הקריאות שהסקירה ביצעה",
|
|
7055
|
+
"exhausted": {
|
|
7056
|
+
"calls": "לסקירה נגמרו הקריאות לפני שסיימה, ולכן ייתכן שלא בדקה את כל התחומים. הריצו שוב את ההרצה לסקירה מלאה יותר.",
|
|
7057
|
+
"chars": "לסקירה נגמר תקציב התוכן לפני שסיימה, ולכן ייתכן שלא בדקה את כל התחומים. הריצו שוב את ההרצה לסקירה מלאה יותר."
|
|
7058
|
+
},
|
|
7059
|
+
"outcome": {
|
|
7060
|
+
"read": "נקרא",
|
|
7061
|
+
"absent": "לא קיים",
|
|
7062
|
+
"unreadable": "נכשל",
|
|
7063
|
+
"refused": "נדחה"
|
|
7064
|
+
}
|
|
7065
|
+
},
|
|
7050
7066
|
"notes": {
|
|
7051
7067
|
"label": "הערות לכל השירות",
|
|
7052
7068
|
"description": "מועברות לסוכן כלשונן, יחד עם ההחלטות שלך.",
|
package/i18n/locales/it.json
CHANGED
|
@@ -5185,6 +5185,22 @@
|
|
|
5185
5185
|
"budget_exhausted": "Questo workspace ha superato il budget dei modelli, quindi la piattaforma non ha pagato per un suggerimento di adozione. Le decisioni restano tue: descrivi cosa vuoi nelle note qui sotto, oppure aumenta il budget e riprova l'esecuzione.",
|
|
5186
5186
|
"analysis_unusable": "L'analisi non ha restituito un suggerimento utilizzabile. Puoi comunque descrivere cosa vuoi nelle note."
|
|
5187
5187
|
},
|
|
5188
|
+
"survey": {
|
|
5189
|
+
"summary": "Questo suggerimento nasce da {read} file ed elenchi di directory; {byModel} li ha richiesti il modello stesso.",
|
|
5190
|
+
"missed": "Letture che non hanno restituito nulla: {count}. Espandi per vedere quali.",
|
|
5191
|
+
"truncated": "Letture che il registro non ha potuto conservare: {count}. Il sondaggio le ha eseguite; all’elenco qui sotto manca la coda.",
|
|
5192
|
+
"show": "Mostra tutte le letture eseguite",
|
|
5193
|
+
"exhausted": {
|
|
5194
|
+
"calls": "L’indagine ha esaurito le letture prima di concludere, quindi potrebbe non aver verificato tutte le aree. Riprova l’esecuzione per una lettura più completa.",
|
|
5195
|
+
"chars": "L’indagine ha esaurito il budget di contenuto prima di concludere, quindi potrebbe non aver verificato tutte le aree. Riprova l’esecuzione per una lettura più completa."
|
|
5196
|
+
},
|
|
5197
|
+
"outcome": {
|
|
5198
|
+
"read": "letto",
|
|
5199
|
+
"absent": "assente",
|
|
5200
|
+
"unreadable": "non riuscito",
|
|
5201
|
+
"refused": "rifiutato"
|
|
5202
|
+
}
|
|
5203
|
+
},
|
|
5188
5204
|
"notes": {
|
|
5189
5205
|
"label": "Note per l'intero servizio",
|
|
5190
5206
|
"description": "Passate all'agente alla lettera, insieme alle tue decisioni.",
|
package/i18n/locales/ja.json
CHANGED
|
@@ -7047,6 +7047,22 @@
|
|
|
7047
7047
|
"budget_exhausted": "このワークスペースはモデル予算を超えているため、プラットフォームは採用方針の提案を購入しませんでした。判断は引き続きあなたが行えます。下のメモに希望を記入するか、予算を引き上げて実行を再試行してください。",
|
|
7048
7048
|
"analysis_unusable": "調査から使える提案が返りませんでした。下のメモに希望を書くことはできます。"
|
|
7049
7049
|
},
|
|
7050
|
+
"survey": {
|
|
7051
|
+
"summary": "この提案は {read} 件のファイルとディレクトリ一覧から作られ、そのうち {byModel} 件はモデル自身が要求したものです。",
|
|
7052
|
+
"missed": "何も返さなかった読み取り: {count} 件。展開するとどれかが分かります。",
|
|
7053
|
+
"truncated": "記録に残せなかった読み取り: {count} 件。調査は実行しましたが、下のリストには末尾が含まれていません。",
|
|
7054
|
+
"show": "調査が行った読み取りをすべて表示",
|
|
7055
|
+
"exhausted": {
|
|
7056
|
+
"calls": "調査は読み取り回数を使い切って終了したため、すべての領域を確認できていない可能性があります。より広く読ませるには実行をやり直してください。",
|
|
7057
|
+
"chars": "調査は内容量の上限に達して終了したため、すべての領域を確認できていない可能性があります。より広く読ませるには実行をやり直してください。"
|
|
7058
|
+
},
|
|
7059
|
+
"outcome": {
|
|
7060
|
+
"read": "読み取り",
|
|
7061
|
+
"absent": "存在せず",
|
|
7062
|
+
"unreadable": "失敗",
|
|
7063
|
+
"refused": "拒否"
|
|
7064
|
+
}
|
|
7065
|
+
},
|
|
7050
7066
|
"notes": {
|
|
7051
7067
|
"label": "サービス全体へのメモ",
|
|
7052
7068
|
"description": "判断とあわせて、そのままエージェントに渡されます。",
|
package/i18n/locales/pl.json
CHANGED
|
@@ -7047,6 +7047,22 @@
|
|
|
7047
7047
|
"budget_exhausted": "Ten obszar roboczy przekroczył budżet modeli, więc platforma nie opłaciła propozycji adopcji. Decyzje nadal należą do Ciebie: opisz swoje oczekiwania w notatkach poniżej albo zwiększ budżet i ponów uruchomienie.",
|
|
7048
7048
|
"analysis_unusable": "Analiza nie zwróciła użytecznej propozycji. Nadal możesz opisać w notatkach, czego oczekujesz."
|
|
7049
7049
|
},
|
|
7050
|
+
"survey": {
|
|
7051
|
+
"summary": "Ta sugestia powstała z {read} plików i list katalogów; {byModel} z nich model poprosił sam.",
|
|
7052
|
+
"missed": "Odczyty, które nic nie zwróciły: {count}. Rozwiń, aby zobaczyć które.",
|
|
7053
|
+
"truncated": "Odczyty, których zapis nie pomieścił: {count}. Badanie je wykonało; poniższej liście brakuje końcówki.",
|
|
7054
|
+
"show": "Pokaż wszystkie odczyty wykonane przez przegląd",
|
|
7055
|
+
"exhausted": {
|
|
7056
|
+
"calls": "Przeglądowi skończyły się odczyty, zanim zakończył pracę, więc mógł nie sprawdzić wszystkich obszarów. Uruchom bieg ponownie, aby uzyskać pełniejszy odczyt.",
|
|
7057
|
+
"chars": "Przeglądowi skończył się budżet treści, zanim zakończył pracę, więc mógł nie sprawdzić wszystkich obszarów. Uruchom bieg ponownie, aby uzyskać pełniejszy odczyt."
|
|
7058
|
+
},
|
|
7059
|
+
"outcome": {
|
|
7060
|
+
"read": "odczytano",
|
|
7061
|
+
"absent": "brak",
|
|
7062
|
+
"unreadable": "niepowodzenie",
|
|
7063
|
+
"refused": "odrzucono"
|
|
7064
|
+
}
|
|
7065
|
+
},
|
|
7050
7066
|
"notes": {
|
|
7051
7067
|
"label": "Uwagi do całej usługi",
|
|
7052
7068
|
"description": "Przekazywane agentowi dosłownie, razem z Twoimi decyzjami.",
|
package/i18n/locales/tr.json
CHANGED
|
@@ -7047,6 +7047,22 @@
|
|
|
7047
7047
|
"budget_exhausted": "Bu çalışma alanı model bütçesini aştı, bu yüzden platform bir benimseme önerisi için ödeme yapmadı. Kararlar hâlâ senin: aşağıdaki notlarda ne istediğini yaz ya da bütçeyi yükseltip çalıştırmayı yeniden dene.",
|
|
7048
7048
|
"analysis_unusable": "İnceleme kullanılabilir bir öneri döndürmedi. Yine de aşağıdaki notlarda ne istediğini yazabilirsin."
|
|
7049
7049
|
},
|
|
7050
|
+
"survey": {
|
|
7051
|
+
"summary": "Bu öneri {read} dosya ve dizin listesinden oluşturuldu; bunların {byModel} tanesini modelin kendisi istedi.",
|
|
7052
|
+
"missed": "Hiçbir şey döndürmeyen okumalar: {count}. Hangileri olduğunu görmek için genişletin.",
|
|
7053
|
+
"truncated": "Kaydın tutamadığı okuma sayısı: {count}. İnceleme bunları yaptı; aşağıdaki listenin sonu eksik.",
|
|
7054
|
+
"show": "İncelemenin yaptığı tüm okumaları göster",
|
|
7055
|
+
"exhausted": {
|
|
7056
|
+
"calls": "İnceleme, işi bitmeden okuma hakkını tüketti; bu yüzden her alanı kontrol etmemiş olabilir. Daha kapsamlı bir okuma için çalıştırmayı yeniden deneyin.",
|
|
7057
|
+
"chars": "İnceleme, işi bitmeden içerik bütçesini tüketti; bu yüzden her alanı kontrol etmemiş olabilir. Daha kapsamlı bir okuma için çalıştırmayı yeniden deneyin."
|
|
7058
|
+
},
|
|
7059
|
+
"outcome": {
|
|
7060
|
+
"read": "okundu",
|
|
7061
|
+
"absent": "yok",
|
|
7062
|
+
"unreadable": "başarısız",
|
|
7063
|
+
"refused": "reddedildi"
|
|
7064
|
+
}
|
|
7065
|
+
},
|
|
7050
7066
|
"notes": {
|
|
7051
7067
|
"label": "Servisin tamamı için notlar",
|
|
7052
7068
|
"description": "Kararlarınla birlikte ajana olduğu gibi iletilir.",
|
package/i18n/locales/uk.json
CHANGED
|
@@ -7047,6 +7047,22 @@
|
|
|
7047
7047
|
"budget_exhausted": "Цей робочий простір перевищив бюджет моделей, тому платформа не оплачувала пропозицію щодо запозичення. Рішення все одно за вами: опишіть у примітках нижче, чого ви хочете, або збільште бюджет і повторіть запуск.",
|
|
7048
7048
|
"analysis_unusable": "Аналіз не повернув придатної пропозиції. Ви все одно можете описати бажане в нотатках."
|
|
7049
7049
|
},
|
|
7050
|
+
"survey": {
|
|
7051
|
+
"summary": "Цю пропозицію побудовано з {read} файлів і списків каталогів; {byModel} із них модель запросила сама.",
|
|
7052
|
+
"missed": "Читань, які нічого не повернули: {count}. Розгорніть, щоб побачити які.",
|
|
7053
|
+
"truncated": "Зчитування, які запис не зміг зберегти: {count}. Обстеження їх виконало; наведеному нижче списку бракує кінця.",
|
|
7054
|
+
"show": "Показати всі читання, які зробило обстеження",
|
|
7055
|
+
"exhausted": {
|
|
7056
|
+
"calls": "Обстеженню забракло читань, перш ніж воно завершилося, тож воно могло перевірити не всі ділянки. Перезапустіть виконання, щоб отримати повніше читання.",
|
|
7057
|
+
"chars": "Обстеженню забракло бюджету вмісту, перш ніж воно завершилося, тож воно могло перевірити не всі ділянки. Перезапустіть виконання, щоб отримати повніше читання."
|
|
7058
|
+
},
|
|
7059
|
+
"outcome": {
|
|
7060
|
+
"read": "прочитано",
|
|
7061
|
+
"absent": "відсутнє",
|
|
7062
|
+
"unreadable": "збій",
|
|
7063
|
+
"refused": "відхилено"
|
|
7064
|
+
}
|
|
7065
|
+
},
|
|
7050
7066
|
"notes": {
|
|
7051
7067
|
"label": "Нотатки щодо всього сервісу",
|
|
7052
7068
|
"description": "Передаються агентові дослівно разом із вашими рішеннями.",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cat-factory/app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.293.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.342.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",
|