@cat-factory/app 0.204.0 → 0.206.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/binaryOutput/BinaryOutputReport.vue +41 -0
- package/app/components/pipeline/BinaryOutputStepPicker.vue +149 -12
- package/app/composables/usePipelineErrorToast.ts +35 -3
- package/app/stores/agents.ts +34 -0
- package/app/stores/pipelines/draftStepConfig.ts +8 -2
- package/app/stores/workspace/hydrate.ts +8 -0
- package/app/utils/binaryOutput.spec.ts +179 -1
- package/app/utils/binaryOutput.ts +135 -2
- package/i18n/locales/de.json +28 -3
- package/i18n/locales/en.json +28 -3
- package/i18n/locales/es.json +28 -3
- package/i18n/locales/fr.json +28 -3
- package/i18n/locales/he.json +28 -3
- package/i18n/locales/it.json +28 -3
- package/i18n/locales/ja.json +28 -3
- package/i18n/locales/pl.json +28 -3
- package/i18n/locales/tr.json +28 -3
- package/i18n/locales/uk.json +28 -3
- package/package.json +2 -2
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ASSET_STORAGE_CAPABILITY } from '@cat-factory/contracts'
|
|
2
|
+
import type { BinaryModality, RegisteredBinaryGenerator } from '@cat-factory/contracts'
|
|
2
3
|
import type {
|
|
3
4
|
BinaryOutputArtifact,
|
|
4
5
|
BinaryOutputConfig,
|
|
@@ -63,6 +64,15 @@ export interface BinaryOutputRow extends BinaryOutputArtifact {
|
|
|
63
64
|
misdirected: boolean
|
|
64
65
|
/** The named service was not in the resolved catalog when the declaration was parsed. */
|
|
65
66
|
unknown: boolean
|
|
67
|
+
/**
|
|
68
|
+
* The named GENERATIVE INTEGRATION (`artifact.generator`) was not one the deployment registers
|
|
69
|
+
* when the declaration was parsed. The generative twin of {@link unknown}, and kept as its own
|
|
70
|
+
* flag for the same reason the two unknown-id lists are: the fixes live in different places —
|
|
71
|
+
* an unknown service is workspace catalog state, an unknown integration is the deployment's
|
|
72
|
+
* build. A row that claims NO generator is not unknown, it is unattributed, which is a legal
|
|
73
|
+
* state (a model with native image output generates without a registered integration).
|
|
74
|
+
*/
|
|
75
|
+
generatorUnknown: boolean
|
|
66
76
|
}
|
|
67
77
|
|
|
68
78
|
/** The whole surface's read model: one state, the join, and every loss the report counted. */
|
|
@@ -97,6 +107,33 @@ export interface BinaryOutputView {
|
|
|
97
107
|
* that cannot overlap is the only shape where naming one cannot mis-state the other.
|
|
98
108
|
*/
|
|
99
109
|
unknownDeclaredServices: readonly string[]
|
|
110
|
+
/**
|
|
111
|
+
* The GENERATIVE INTEGRATIONS the step selected (`stepOptions.binaryOutput.generatorIds`), in
|
|
112
|
+
* selection order. Empty is a real state and not a gap: a step may generate through whatever
|
|
113
|
+
* its agent already has, and its brief says so.
|
|
114
|
+
*/
|
|
115
|
+
generators: readonly string[]
|
|
116
|
+
/**
|
|
117
|
+
* The CONTENT TYPES the step declares it must deliver (`stepOptions.binaryOutput.modalities`).
|
|
118
|
+
* Empty ⇒ the step imposes no requirement, so nothing is uncovered by construction.
|
|
119
|
+
*/
|
|
120
|
+
modalities: readonly BinaryModality[]
|
|
121
|
+
/**
|
|
122
|
+
* Integration ids the AGENT named that the deployment does not register. The generative twin of
|
|
123
|
+
* {@link unknownDeclaredServices}, and it needs no exclusion to stay disjoint from anything —
|
|
124
|
+
* there is no single "target" integration a step selects, so the report's own list is already
|
|
125
|
+
* the whole fact. Rendering it is not optional: the entries are RETAINED, so dropping the list
|
|
126
|
+
* would leave an artifact attributed to something nobody can look up, with nothing saying so.
|
|
127
|
+
*/
|
|
128
|
+
unknownDeclaredGenerators: readonly string[]
|
|
129
|
+
/**
|
|
130
|
+
* True when the deployment's integrations could not be READ at settlement, so no claimed id was
|
|
131
|
+
* checked against them. Rendered as its own line and never as an empty
|
|
132
|
+
* {@link unknownDeclaredGenerators}: that list being empty otherwise means "every id checked
|
|
133
|
+
* out", and a reader deciding whether these artifacts are real must not be shown a clean bill
|
|
134
|
+
* of health nobody actually issued.
|
|
135
|
+
*/
|
|
136
|
+
generatorsUnverified: boolean
|
|
100
137
|
/** Entries dropped because they were not `{ service, location }` objects. */
|
|
101
138
|
invalidEntries: number
|
|
102
139
|
/** Valid entries dropped past the report's cap — so {@link rows} is a PREFIX. */
|
|
@@ -129,6 +166,8 @@ export function binaryOutputView(step: PipelineStep | null | undefined): BinaryO
|
|
|
129
166
|
|
|
130
167
|
const target = config?.storageServiceId ?? null
|
|
131
168
|
const contextServices = config?.contextServiceIds ?? []
|
|
169
|
+
const generators = config?.generatorIds ?? []
|
|
170
|
+
const modalities = config?.modalities ?? []
|
|
132
171
|
if (!report) {
|
|
133
172
|
return {
|
|
134
173
|
// A step still queued has not had the chance to record anything, which is a different
|
|
@@ -139,6 +178,10 @@ export function binaryOutputView(step: PipelineStep | null | undefined): BinaryO
|
|
|
139
178
|
rows: [],
|
|
140
179
|
targetUnknown: false,
|
|
141
180
|
unknownDeclaredServices: [],
|
|
181
|
+
generators,
|
|
182
|
+
modalities,
|
|
183
|
+
unknownDeclaredGenerators: [],
|
|
184
|
+
generatorsUnverified: false,
|
|
142
185
|
invalidEntries: 0,
|
|
143
186
|
omitted: 0,
|
|
144
187
|
misdirected: 0,
|
|
@@ -146,11 +189,14 @@ export function binaryOutputView(step: PipelineStep | null | undefined): BinaryO
|
|
|
146
189
|
}
|
|
147
190
|
|
|
148
191
|
const unknown = new Set(report.unknownServices)
|
|
192
|
+
const unknownGenerators = new Set(report.unknownGenerators)
|
|
149
193
|
const rows: BinaryOutputRow[] = report.stored.map((artifact) => ({
|
|
150
194
|
...artifact,
|
|
151
195
|
// A null target cannot make anything misdirected: there is no place it was supposed to go.
|
|
152
196
|
misdirected: target !== null && artifact.service !== target,
|
|
153
197
|
unknown: unknown.has(artifact.service),
|
|
198
|
+
// An UNATTRIBUTED row (no `generator` claimed) is not unknown — see the field's own note.
|
|
199
|
+
generatorUnknown: artifact.generator !== undefined && unknownGenerators.has(artifact.generator),
|
|
154
200
|
}))
|
|
155
201
|
|
|
156
202
|
return {
|
|
@@ -160,6 +206,10 @@ export function binaryOutputView(step: PipelineStep | null | undefined): BinaryO
|
|
|
160
206
|
rows,
|
|
161
207
|
targetUnknown: target !== null && unknown.has(target),
|
|
162
208
|
unknownDeclaredServices: report.unknownServices.filter((id) => id !== target),
|
|
209
|
+
generators,
|
|
210
|
+
modalities,
|
|
211
|
+
unknownDeclaredGenerators: report.unknownGenerators,
|
|
212
|
+
generatorsUnverified: report.generatorsUnverified === true,
|
|
163
213
|
invalidEntries: report.invalidEntries,
|
|
164
214
|
omitted: report.omitted,
|
|
165
215
|
misdirected: rows.filter((row) => row.misdirected).length,
|
|
@@ -235,6 +285,10 @@ export const BINARY_OUTPUT_STATE_KEYS: Record<
|
|
|
235
285
|
* unknown service ids, dropped entries, a truncated list, or a misdirected artifact. Drives
|
|
236
286
|
* the collapsed summary row's tone, so a report with losses can't read as a clean one from
|
|
237
287
|
* the outside of a collapsed section.
|
|
288
|
+
*
|
|
289
|
+
* An UNCHECKED verdict counts as one of those qualifications, and it is the only member here
|
|
290
|
+
* that is not itself a loss: nothing went wrong with the run, but the report is quieter than it
|
|
291
|
+
* looks, and a collapsed section that renders it as clean would hide the one line saying so.
|
|
238
292
|
*/
|
|
239
293
|
export function binaryOutputHasWarnings(view: BinaryOutputView): boolean {
|
|
240
294
|
return (
|
|
@@ -242,6 +296,8 @@ export function binaryOutputHasWarnings(view: BinaryOutputView): boolean {
|
|
|
242
296
|
view.state === 'undeclared' ||
|
|
243
297
|
view.targetUnknown ||
|
|
244
298
|
view.unknownDeclaredServices.length > 0 ||
|
|
299
|
+
view.unknownDeclaredGenerators.length > 0 ||
|
|
300
|
+
view.generatorsUnverified ||
|
|
245
301
|
view.invalidEntries > 0 ||
|
|
246
302
|
view.omitted > 0 ||
|
|
247
303
|
view.misdirected > 0
|
|
@@ -269,6 +325,11 @@ export type BinaryOutputPickIssue =
|
|
|
269
325
|
| 'catalog_unavailable'
|
|
270
326
|
/** The catalog resolved, but nothing in it declares the `asset-storage` capability. */
|
|
271
327
|
| 'no_storage_service'
|
|
328
|
+
/** The deployment's registered integrations could not be READ (a mothership-mode node whose
|
|
329
|
+
* mothership is unreachable). Kept apart from an empty set for the same reason
|
|
330
|
+
* `catalog_unavailable` is: an empty picker is a claim about the deployment's BUILD, and
|
|
331
|
+
* acting on it during an outage sends someone looking in the wrong repository. */
|
|
332
|
+
| 'generators_unavailable'
|
|
272
333
|
/** An enabled generator step with no storage selection — refused at save AND at start. */
|
|
273
334
|
| 'not_selected'
|
|
274
335
|
/** The selected storage id is not in the resolved catalog (kernel's `unknown_service`). */
|
|
@@ -277,12 +338,60 @@ export type BinaryOutputPickIssue =
|
|
|
277
338
|
| 'not_storage_capable'
|
|
278
339
|
/** One or more selected CONTEXT ids are not in the resolved catalog. */
|
|
279
340
|
| 'unknown_context_service'
|
|
341
|
+
/**
|
|
342
|
+
* A selected GENERATIVE INTEGRATION is not one this deployment registers (kernel's
|
|
343
|
+
* `BinaryGeneratorSelectionIssue.problem` spelling verbatim, like the two `*_service` members).
|
|
344
|
+
*/
|
|
345
|
+
| 'unknown_generator'
|
|
346
|
+
/** A content type the step declares it delivers is produced by NO selected integration. */
|
|
347
|
+
| 'modality_uncovered'
|
|
280
348
|
|
|
281
349
|
/** What the builder found wrong with one step's selection, and which ids to name. */
|
|
282
350
|
export interface BinaryOutputPickState {
|
|
283
351
|
issues: readonly BinaryOutputPickIssue[]
|
|
284
352
|
/** The unresolved CONTEXT ids, for the message that names them. */
|
|
285
353
|
unknownContextIds: readonly string[]
|
|
354
|
+
/** The unregistered GENERATIVE INTEGRATION ids, for the message that names them. */
|
|
355
|
+
unknownGeneratorIds: readonly string[]
|
|
356
|
+
/** The declared content types nothing selected can produce, for the message that names them. */
|
|
357
|
+
uncoveredModalities: readonly BinaryModality[]
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
/**
|
|
361
|
+
* The GENERATIVE half of {@link binaryOutputPickIssues}, mirroring kernel's
|
|
362
|
+
* `binaryGeneratorSelectionIssues` so the builder surfaces the `binary_output_generator_invalid`
|
|
363
|
+
* refusal before the round trip rather than inventing a second opinion.
|
|
364
|
+
*
|
|
365
|
+
* `unavailable` is the one state that is NOT derivable from the list, which is why the snapshot
|
|
366
|
+
* carries it as its own flag. An empty list normally IS a real empty — this deployment registers
|
|
367
|
+
* none — and that is exactly why a selected id in that state is `unknown_generator` rather than
|
|
368
|
+
* silence. But on a mothership-mode deployment the set is read from the mothership, and a failed
|
|
369
|
+
* read is the same empty list about a completely different fact. Reporting `unknown_generator`
|
|
370
|
+
* there would tell someone their step names an integration nobody registered, about an id that
|
|
371
|
+
* is very likely fine — the same misattribution the backend refuses to make at admission. So an
|
|
372
|
+
* unavailable set reports THAT and stops: every other judgement below is a claim about a list
|
|
373
|
+
* nobody managed to read.
|
|
374
|
+
*/
|
|
375
|
+
function generatorPickIssues(
|
|
376
|
+
config: BinaryOutputConfig | undefined,
|
|
377
|
+
generators: readonly Pick<RegisteredBinaryGenerator, 'id' | 'modalities'>[],
|
|
378
|
+
unavailable: boolean,
|
|
379
|
+
): { issues: BinaryOutputPickIssue[]; unknownGeneratorIds: string[]; uncovered: BinaryModality[] } {
|
|
380
|
+
if (unavailable) {
|
|
381
|
+
return { issues: ['generators_unavailable'], unknownGeneratorIds: [], uncovered: [] }
|
|
382
|
+
}
|
|
383
|
+
const byId = new Map(generators.map((g) => [g.id, g]))
|
|
384
|
+
const selectedIds = config?.generatorIds ?? []
|
|
385
|
+
const unknownGeneratorIds = selectedIds.filter((id) => !byId.has(id))
|
|
386
|
+
// Coverage is judged against what RESOLVED, exactly as admission judges it: an unknown id
|
|
387
|
+
// contributes no content types, so a step whose only audio generator is unregistered is told
|
|
388
|
+
// BOTH things — the id is gone, and the requirement it was covering is now uncovered.
|
|
389
|
+
const covered = new Set(selectedIds.flatMap((id) => byId.get(id)?.modalities ?? []))
|
|
390
|
+
const uncovered = (config?.modalities ?? []).filter((m) => !covered.has(m))
|
|
391
|
+
const issues: BinaryOutputPickIssue[] = []
|
|
392
|
+
if (unknownGeneratorIds.length) issues.push('unknown_generator')
|
|
393
|
+
if (uncovered.length) issues.push('modality_uncovered')
|
|
394
|
+
return { issues, unknownGeneratorIds, uncovered }
|
|
286
395
|
}
|
|
287
396
|
|
|
288
397
|
/**
|
|
@@ -312,9 +421,23 @@ export function binaryOutputPickIssues(
|
|
|
312
421
|
config: BinaryOutputConfig | undefined,
|
|
313
422
|
catalog: readonly Pick<ResolvedFoundationalService, 'id' | 'capabilities'>[],
|
|
314
423
|
available: boolean | null,
|
|
424
|
+
// Defaulted to EMPTY, the same reading `RunAdmission` gives an unwired registry: a deployment
|
|
425
|
+
// that registers no integrations cannot satisfy a step that selects one. So a call site that
|
|
426
|
+
// omits this FLAGS a selection rather than passing it — the loud direction — and the default
|
|
427
|
+
// stays a legitimate value rather than a hole.
|
|
428
|
+
generators: readonly Pick<RegisteredBinaryGenerator, 'id' | 'modalities'>[] = [],
|
|
429
|
+
// Whether the deployment's integrations could not be READ. Defaulted to `false` — the honest
|
|
430
|
+
// default, since every deployment but a mothership-mode node reads them in-process and cannot
|
|
431
|
+
// fail — so an omitting call site judges the list it was given rather than claiming an outage.
|
|
432
|
+
generatorsUnavailable = false,
|
|
315
433
|
): BinaryOutputPickState {
|
|
316
434
|
const resolved = available === true
|
|
317
435
|
const issues: BinaryOutputPickIssue[] = []
|
|
436
|
+
// Judged FIRST and outside the `not_selected` early return below, because the two halves
|
|
437
|
+
// resolve against different registries and a step missing its storage pick routinely has a
|
|
438
|
+
// generative fault too. Reporting them one round at a time is exactly the fix-and-retry cycle
|
|
439
|
+
// this function returns every issue to avoid.
|
|
440
|
+
const generative = generatorPickIssues(config, generators, generatorsUnavailable)
|
|
318
441
|
const noStorageService =
|
|
319
442
|
resolved && !catalog.some((s) => s.capabilities.includes(ASSET_STORAGE_CAPABILITY))
|
|
320
443
|
if (available === false) issues.push('catalog_unavailable')
|
|
@@ -323,7 +446,12 @@ export function binaryOutputPickIssues(
|
|
|
323
446
|
const storageId = config?.storageServiceId?.trim()
|
|
324
447
|
if (!storageId) {
|
|
325
448
|
issues.push('not_selected')
|
|
326
|
-
return {
|
|
449
|
+
return {
|
|
450
|
+
issues: [...issues, ...generative.issues],
|
|
451
|
+
unknownContextIds: [],
|
|
452
|
+
unknownGeneratorIds: generative.unknownGeneratorIds,
|
|
453
|
+
uncoveredModalities: generative.uncovered,
|
|
454
|
+
}
|
|
327
455
|
}
|
|
328
456
|
|
|
329
457
|
if (resolved && !noStorageService) {
|
|
@@ -339,5 +467,10 @@ export function binaryOutputPickIssues(
|
|
|
339
467
|
: []
|
|
340
468
|
if (unknownContextIds.length) issues.push('unknown_context_service')
|
|
341
469
|
|
|
342
|
-
return {
|
|
470
|
+
return {
|
|
471
|
+
issues: [...issues, ...generative.issues],
|
|
472
|
+
unknownContextIds,
|
|
473
|
+
unknownGeneratorIds: generative.unknownGeneratorIds,
|
|
474
|
+
uncoveredModalities: generative.uncovered,
|
|
475
|
+
}
|
|
343
476
|
}
|
package/i18n/locales/de.json
CHANGED
|
@@ -3742,7 +3742,21 @@
|
|
|
3742
3742
|
"binaryOutputMissing": "Dieser Speicherdienst ist nicht mehr im Katalog; wähle einen anderen.",
|
|
3743
3743
|
"binaryOutputNotStorage": "Dieser Dienst deklariert die Fähigkeit {capability} nicht mehr, deshalb werden Läufe abgelehnt; wähle einen anderen.",
|
|
3744
3744
|
"binaryOutputContextMissing": "Diese Kontextdienste sind nicht mehr im Katalog: {ids}",
|
|
3745
|
-
"binaryOutputUnavailable": "Der Katalog der grundlegenden Dienste ist nicht erreichbar, deshalb lässt sich hier noch nichts wählen."
|
|
3745
|
+
"binaryOutputUnavailable": "Der Katalog der grundlegenden Dienste ist nicht erreichbar, deshalb lässt sich hier noch nichts wählen.",
|
|
3746
|
+
"binaryOutputGenerators": "Erzeugen mit",
|
|
3747
|
+
"binaryOutputGeneratorsUnavailable": "Die generativen Integrationen dieser Installation konnten nicht gelesen werden, daher lässt sich hier noch nichts auswählen. Das ist ein Verbindungsproblem, keine fehlende Registrierung.",
|
|
3748
|
+
"binaryOutputGeneratorsPlaceholder": "Keine Integration ausgewählt",
|
|
3749
|
+
"binaryOutputModalities": "Muss liefern",
|
|
3750
|
+
"binaryOutputModalitiesPlaceholder": "Keine Anforderung",
|
|
3751
|
+
"binaryOutputGeneratorMissing": "Diese Installation registriert diese generativen Integrationen nicht: {ids}. Sie werden im Code der Installation registriert, nicht in diesem Workspace.",
|
|
3752
|
+
"binaryOutputModalityUncovered": "Keine ausgewählte Integration erzeugt {modalities}, was dieser Schritt liefern soll.",
|
|
3753
|
+
"binaryOutputModality": {
|
|
3754
|
+
"image": "Bilder",
|
|
3755
|
+
"audio": "Audio",
|
|
3756
|
+
"video": "Video",
|
|
3757
|
+
"3d": "3D-Modelle",
|
|
3758
|
+
"document": "Dokumente"
|
|
3759
|
+
}
|
|
3746
3760
|
},
|
|
3747
3761
|
"progress": {
|
|
3748
3762
|
"status": {
|
|
@@ -4431,8 +4445,11 @@
|
|
|
4431
4445
|
"targetUnknown": "Der Katalog enthält den eigenen Speicherdienst dieses Schritts nicht mehr ({id}), deshalb konnte nichts unten dagegen geprüft werden. Registriere ihn erneut, oder verweise den Schritt auf einen anderen Dienst.",
|
|
4432
4446
|
"misdirected": "1 Artefakt ging an einen anderen Dienst als {target}. | {count} Artefakte gingen an einen anderen Dienst als {target}.",
|
|
4433
4447
|
"invalidEntries": "1 angegebener Eintrag wurde verworfen: er nannte weder Dienst noch Ablageort. | {count} angegebene Einträge wurden verworfen: sie nannten weder Dienst noch Ablageort.",
|
|
4434
|
-
"omitted": "1 weiteres Artefakt wurde jenseits der Berichtsgrenze angegeben und ist nicht aufgeführt. | {count} weitere Artefakte wurden jenseits der Berichtsgrenze angegeben und sind nicht aufgeführt."
|
|
4435
|
-
|
|
4448
|
+
"omitted": "1 weiteres Artefakt wurde jenseits der Berichtsgrenze angegeben und ist nicht aufgeführt. | {count} weitere Artefakte wurden jenseits der Berichtsgrenze angegeben und sind nicht aufgeführt.",
|
|
4449
|
+
"unknownGenerators": "Eine generative Integration genannt, die diese Installation nicht registriert: {ids}. Der Eintrag bleibt wie angegeben erhalten; die Integration wird im Code der Installation registriert, nicht in diesem Workspace. | Generative Integrationen genannt, die diese Installation nicht registriert: {ids}. Ihre Einträge bleiben wie angegeben erhalten; Integrationen werden im Code der Installation registriert, nicht in diesem Workspace.",
|
|
4450
|
+
"generatorsUnverified": "Die generativen Integrationen dieser Installation konnten beim Abschluss des Schritts nicht gelesen werden, daher wurden die unten genannten Integrationen nicht dagegen geprüft. Die Einträge bleiben wie angegeben erhalten."
|
|
4451
|
+
},
|
|
4452
|
+
"unknownGeneratorBadge": "Nicht registriert"
|
|
4436
4453
|
},
|
|
4437
4454
|
"brainstorm": {
|
|
4438
4455
|
"title": {
|
|
@@ -4894,6 +4911,12 @@
|
|
|
4894
4911
|
"unexpected": "Der Server hat eine unerwartete Antwort zurückgegeben. Versuche es erneut und gib die Details an den Betreiber des Deployments weiter, wenn es weiterhin auftritt."
|
|
4895
4912
|
}
|
|
4896
4913
|
},
|
|
4914
|
+
"unavailable": {
|
|
4915
|
+
"description": {
|
|
4916
|
+
"binary_generators_unreachable": "Die generativen Integrationen dieser Installation konnten gerade nicht gelesen werden, deshalb wurde der Lauf nicht gestartet. Es ist nichts falsch konfiguriert und keine Änderung nötig: versuchen Sie es erneut, sobald die Verbindung wieder steht.",
|
|
4917
|
+
"foundational_builtins_unreachable": "Die integrierten Basisdienste dieser Installation konnten gerade nicht gelesen werden. Es ist nichts falsch konfiguriert und keine Änderung nötig: versuchen Sie es erneut, sobald die Verbindung wieder steht."
|
|
4918
|
+
}
|
|
4919
|
+
},
|
|
4897
4920
|
"action": {
|
|
4898
4921
|
"retryFailed": "Wiederholung fehlgeschlagen",
|
|
4899
4922
|
"startFailed": "Start fehlgeschlagen",
|
|
@@ -4946,6 +4969,7 @@
|
|
|
4946
4969
|
"pipeline_schedule_intake_unconfigured": "Zeitplan ohne Ticket-Erfassung",
|
|
4947
4970
|
"foundational_service_exists": "Basisdienst existiert bereits",
|
|
4948
4971
|
"binary_output_service_invalid": "Dienst für Binärausgaben nicht auflösbar",
|
|
4972
|
+
"binary_output_generator_invalid": "Generator für Binärausgaben nicht auflösbar",
|
|
4949
4973
|
"foundational_service_not_inherited": "Dieses Board hat den Dienst registriert"
|
|
4950
4974
|
},
|
|
4951
4975
|
"description": {
|
|
@@ -4977,6 +5001,7 @@
|
|
|
4977
5001
|
"pipeline_schedule_intake_unconfigured": "Ein Bug-Intake-Schritt bezieht seine Arbeit aus der Ticket-Erfassung des Zeitplans, und der verknüpfte Zeitplan hat keine. Konfigurieren Sie zuerst die Ticket-Erfassung im Zeitplan.",
|
|
4978
5002
|
"foundational_service_exists": "Ein Basisdienst mit dieser ID ist in diesem Bereich bereits registriert. Öffnen Sie den vorhandenen Eintrag und bearbeiten Sie ihn — zwei Dienste können sich keine ID teilen, denn die ID ist der Name, den ein Architekt in seinem Entwurf verwendet.",
|
|
4979
5003
|
"binary_output_service_invalid": "Ein Schritt, der Binärausgaben erzeugt, wählt einen Basisdienst aus, den der Katalog dieses Workspace nicht auflösen kann: Die ID ist unbekannt, oder der gewählte Speicherdienst trägt nicht die Fähigkeit asset-storage. Korrigieren Sie die Auswahl des Schritts oder registrieren Sie den Dienst und starten Sie erneut.",
|
|
5004
|
+
"binary_output_generator_invalid": "Ein Schritt, der Binärausgaben erzeugt, wählt eine generative Integration aus, die diese Installation nicht registriert, oder keine der gewählten Integrationen erzeugt einen Inhaltstyp, den der Schritt liefern muss. Generative Integrationen werden im Code der Installation registriert, nicht in diesem Workspace: registrieren Sie sie oder korrigieren Sie die Auswahl des Schritts und starten Sie erneut.",
|
|
4980
5005
|
"foundational_service_not_inherited": "Abwählen gilt für einen vom Konto geerbten Dienst. Diese ID ist von diesem Board registriert, es gibt also nichts abzuwählen - lösche stattdessen den eigenen Eintrag des Boards."
|
|
4981
5006
|
},
|
|
4982
5007
|
"action": {
|
package/i18n/locales/en.json
CHANGED
|
@@ -548,6 +548,12 @@
|
|
|
548
548
|
}
|
|
549
549
|
}
|
|
550
550
|
},
|
|
551
|
+
"unavailable": {
|
|
552
|
+
"description": {
|
|
553
|
+
"binary_generators_unreachable": "This deployment's generative integrations could not be read just now, so the run was not started. Nothing is misconfigured and no change is needed: try again once the connection recovers.",
|
|
554
|
+
"foundational_builtins_unreachable": "This deployment's built-in foundational services could not be read just now. Nothing is misconfigured and no change is needed: try again once the connection recovers."
|
|
555
|
+
}
|
|
556
|
+
},
|
|
551
557
|
"action": {
|
|
552
558
|
"retryFailed": "Retry failed",
|
|
553
559
|
"startFailed": "Failed to start",
|
|
@@ -606,6 +612,7 @@
|
|
|
606
612
|
"pipeline_schedule_intake_unconfigured": "Schedule has no issue intake",
|
|
607
613
|
"foundational_service_exists": "Foundational service already exists",
|
|
608
614
|
"binary_output_service_invalid": "Binary output service can't be resolved",
|
|
615
|
+
"binary_output_generator_invalid": "Binary output generator can't be resolved",
|
|
609
616
|
"foundational_service_not_inherited": "This board registered that service"
|
|
610
617
|
},
|
|
611
618
|
"description": {
|
|
@@ -640,6 +647,7 @@
|
|
|
640
647
|
"pipeline_schedule_intake_unconfigured": "A bug intake step draws its work from the schedule issue intake settings, and the attached schedule has none. Configure issue intake on the schedule first.",
|
|
641
648
|
"foundational_service_exists": "A foundational service with this id is already registered at this scope. Open the existing entry and edit it — two services cannot share an id, because the id is what an architect names in its design.",
|
|
642
649
|
"binary_output_service_invalid": "A step that generates binary outputs selects a foundational service this workspace's catalog can't resolve: the id is unknown, or the chosen storage service doesn't carry the asset-storage capability. Fix the step's selection or register the service, then start again.",
|
|
650
|
+
"binary_output_generator_invalid": "A step that generates binary outputs selects a generative integration this deployment doesn't register, or none of the selected integrations produces a content type the step must deliver. Generative integrations are registered in the deployment's code, not in this workspace: register it or fix the step's selection, then start again.",
|
|
643
651
|
"foundational_service_not_inherited": "Opting out applies to a service inherited from the account. This id is registered by this board, so there is nothing to opt out of - delete the board's own entry instead."
|
|
644
652
|
},
|
|
645
653
|
"action": {
|
|
@@ -4219,7 +4227,21 @@
|
|
|
4219
4227
|
"binaryOutputMissing": "This storage service is no longer in the catalog; pick another.",
|
|
4220
4228
|
"binaryOutputNotStorage": "This service no longer declares the {capability} capability, so runs will be refused; pick another.",
|
|
4221
4229
|
"binaryOutputContextMissing": "These context services are no longer in the catalog: {ids}",
|
|
4222
|
-
"binaryOutputUnavailable": "The foundational services catalog is unreachable, so nothing can be picked here yet."
|
|
4230
|
+
"binaryOutputUnavailable": "The foundational services catalog is unreachable, so nothing can be picked here yet.",
|
|
4231
|
+
"binaryOutputGenerators": "Generate with",
|
|
4232
|
+
"binaryOutputGeneratorsUnavailable": "This deployment's generative integrations could not be read, so nothing can be picked here yet. This is a connection problem, not a missing registration.",
|
|
4233
|
+
"binaryOutputGeneratorsPlaceholder": "No integration selected",
|
|
4234
|
+
"binaryOutputModalities": "Must deliver",
|
|
4235
|
+
"binaryOutputModalitiesPlaceholder": "No requirement",
|
|
4236
|
+
"binaryOutputGeneratorMissing": "This deployment does not register these generative integrations: {ids}. They are registered in the deployment's code, not in this workspace.",
|
|
4237
|
+
"binaryOutputModalityUncovered": "No selected integration produces {modalities}, which this step is set to deliver.",
|
|
4238
|
+
"binaryOutputModality": {
|
|
4239
|
+
"image": "Images",
|
|
4240
|
+
"audio": "Audio",
|
|
4241
|
+
"video": "Video",
|
|
4242
|
+
"3d": "3D models",
|
|
4243
|
+
"document": "Documents"
|
|
4244
|
+
}
|
|
4223
4245
|
},
|
|
4224
4246
|
"progress": {
|
|
4225
4247
|
"status": {
|
|
@@ -5641,8 +5663,11 @@
|
|
|
5641
5663
|
"targetUnknown": "The catalog no longer contains this step's own storage service ({id}), so nothing below could be checked against it. Register it again, or point the step at another service.",
|
|
5642
5664
|
"misdirected": "1 artifact went to a service other than {target}. | {count} artifacts went to a service other than {target}.",
|
|
5643
5665
|
"invalidEntries": "1 declared entry was dropped: it named no service and location. | {count} declared entries were dropped: they named no service and location.",
|
|
5644
|
-
"omitted": "1 more artifact was declared beyond the report's limit and is not listed. | {count} more artifacts were declared beyond the report's limit and are not listed."
|
|
5645
|
-
|
|
5666
|
+
"omitted": "1 more artifact was declared beyond the report's limit and is not listed. | {count} more artifacts were declared beyond the report's limit and are not listed.",
|
|
5667
|
+
"unknownGenerators": "Named a generative integration this deployment does not register: {ids}. The entry is kept as claimed; the integration is registered in the deployment's code, not in this workspace. | Named generative integrations this deployment does not register: {ids}. Their entries are kept as claimed; integrations are registered in the deployment's code, not in this workspace.",
|
|
5668
|
+
"generatorsUnverified": "This deployment's generative integrations could not be read when the step settled, so the integrations named below were not checked against them. The entries are kept as claimed."
|
|
5669
|
+
},
|
|
5670
|
+
"unknownGeneratorBadge": "Not registered"
|
|
5646
5671
|
},
|
|
5647
5672
|
"sandbox": {
|
|
5648
5673
|
"title": "Sandbox: prompt and model testing",
|
package/i18n/locales/es.json
CHANGED
|
@@ -497,6 +497,12 @@
|
|
|
497
497
|
"unexpected": "El servidor devolvió una respuesta inesperada. Vuelve a intentarlo y comparte los detalles con el operador del despliegue si sigue ocurriendo."
|
|
498
498
|
}
|
|
499
499
|
},
|
|
500
|
+
"unavailable": {
|
|
501
|
+
"description": {
|
|
502
|
+
"binary_generators_unreachable": "No se han podido leer las integraciones generativas de esta instalación en este momento, así que no se ha iniciado la ejecución. No hay nada mal configurado ni hace falta ningún cambio: inténtalo de nuevo cuando se restablezca la conexión.",
|
|
503
|
+
"foundational_builtins_unreachable": "No se han podido leer los servicios fundamentales integrados de esta instalación en este momento. No hay nada mal configurado ni hace falta ningún cambio: inténtalo de nuevo cuando se restablezca la conexión."
|
|
504
|
+
}
|
|
505
|
+
},
|
|
500
506
|
"action": {
|
|
501
507
|
"retryFailed": "El reintento falló",
|
|
502
508
|
"startFailed": "No se pudo iniciar",
|
|
@@ -549,6 +555,7 @@
|
|
|
549
555
|
"pipeline_schedule_intake_unconfigured": "La programación no tiene entrada de incidencias",
|
|
550
556
|
"foundational_service_exists": "El servicio fundacional ya existe",
|
|
551
557
|
"binary_output_service_invalid": "No se puede resolver el servicio de salidas binarias",
|
|
558
|
+
"binary_output_generator_invalid": "No se puede resolver el generador de salidas binarias",
|
|
552
559
|
"foundational_service_not_inherited": "Este tablero registró ese servicio"
|
|
553
560
|
},
|
|
554
561
|
"description": {
|
|
@@ -580,6 +587,7 @@
|
|
|
580
587
|
"pipeline_schedule_intake_unconfigured": "Un paso de entrada de errores toma su trabajo de la entrada de incidencias de la programación, y la programación vinculada no la tiene. Configure la entrada de incidencias en la programación primero.",
|
|
581
588
|
"foundational_service_exists": "Ya hay un servicio fundacional con este identificador registrado en este ámbito. Abre la entrada existente y edítala: dos servicios no pueden compartir un identificador, porque es el nombre que un arquitecto usa en su diseño.",
|
|
582
589
|
"binary_output_service_invalid": "Un paso que genera salidas binarias selecciona un servicio fundacional que el catálogo de este espacio de trabajo no puede resolver: el identificador es desconocido, o el servicio de almacenamiento elegido no tiene la capacidad asset-storage. Corrige la selección del paso o registra el servicio y vuelve a iniciarlo.",
|
|
590
|
+
"binary_output_generator_invalid": "Un paso que genera salidas binarias selecciona una integración generativa que esta instalación no registra, o ninguna de las integraciones seleccionadas produce un tipo de contenido que el paso debe entregar. Las integraciones generativas se registran en el código de la instalación, no en este espacio de trabajo: regístrala o corrige la selección del paso y vuelve a iniciar.",
|
|
583
591
|
"foundational_service_not_inherited": "La exclusión se aplica a un servicio heredado de la cuenta. Este id está registrado por este tablero, así que no hay nada que excluir: elimina la entrada propia del tablero."
|
|
584
592
|
},
|
|
585
593
|
"action": {
|
|
@@ -4092,7 +4100,21 @@
|
|
|
4092
4100
|
"binaryOutputMissing": "Este servicio de almacenamiento ya no está en el catálogo; elige otro.",
|
|
4093
4101
|
"binaryOutputNotStorage": "Este servicio ya no declara la capacidad {capability}, así que las ejecuciones se rechazarán; elige otro.",
|
|
4094
4102
|
"binaryOutputContextMissing": "Estos servicios de contexto ya no están en el catálogo: {ids}",
|
|
4095
|
-
"binaryOutputUnavailable": "El catálogo de servicios fundamentales no está disponible, así que aún no se puede elegir nada aquí."
|
|
4103
|
+
"binaryOutputUnavailable": "El catálogo de servicios fundamentales no está disponible, así que aún no se puede elegir nada aquí.",
|
|
4104
|
+
"binaryOutputGenerators": "Generar con",
|
|
4105
|
+
"binaryOutputGeneratorsUnavailable": "No se han podido leer las integraciones generativas de esta instalación, así que todavía no se puede elegir nada aquí. Es un problema de conexión, no un registro que falte.",
|
|
4106
|
+
"binaryOutputGeneratorsPlaceholder": "Ninguna integración seleccionada",
|
|
4107
|
+
"binaryOutputModalities": "Debe entregar",
|
|
4108
|
+
"binaryOutputModalitiesPlaceholder": "Sin requisito",
|
|
4109
|
+
"binaryOutputGeneratorMissing": "Esta instalación no registra estas integraciones generativas: {ids}. Se registran en el código de la instalación, no en este espacio de trabajo.",
|
|
4110
|
+
"binaryOutputModalityUncovered": "Ninguna integración seleccionada produce {modalities}, que este paso debe entregar.",
|
|
4111
|
+
"binaryOutputModality": {
|
|
4112
|
+
"image": "Imágenes",
|
|
4113
|
+
"audio": "Audio",
|
|
4114
|
+
"video": "Vídeo",
|
|
4115
|
+
"3d": "Modelos 3D",
|
|
4116
|
+
"document": "Documentos"
|
|
4117
|
+
}
|
|
4096
4118
|
},
|
|
4097
4119
|
"progress": {
|
|
4098
4120
|
"status": {
|
|
@@ -5392,8 +5414,11 @@
|
|
|
5392
5414
|
"targetUnknown": "El catálogo ya no contiene el servicio de almacenamiento de este paso ({id}), así que nada de lo de abajo pudo comprobarse contra él. Vuelve a registrarlo, o apunta el paso a otro servicio.",
|
|
5393
5415
|
"misdirected": "1 artefacto fue a un servicio distinto de {target}. | {count} artefactos fueron a un servicio distinto de {target}.",
|
|
5394
5416
|
"invalidEntries": "Se descartó 1 entrada declarada: no nombraba servicio ni ubicación. | Se descartaron {count} entradas declaradas: no nombraban servicio ni ubicación.",
|
|
5395
|
-
"omitted": "Se declaró 1 artefacto más por encima del límite del informe y no aparece en la lista. | Se declararon {count} artefactos más por encima del límite del informe y no aparecen en la lista."
|
|
5396
|
-
|
|
5417
|
+
"omitted": "Se declaró 1 artefacto más por encima del límite del informe y no aparece en la lista. | Se declararon {count} artefactos más por encima del límite del informe y no aparecen en la lista.",
|
|
5418
|
+
"unknownGenerators": "Nombró una integración generativa que esta instalación no registra: {ids}. La entrada se conserva tal como se declaró; la integración se registra en el código de la instalación, no en este espacio de trabajo. | Nombró integraciones generativas que esta instalación no registra: {ids}. Sus entradas se conservan tal como se declararon; las integraciones se registran en el código de la instalación, no en este espacio de trabajo.",
|
|
5419
|
+
"generatorsUnverified": "No se han podido leer las integraciones generativas de esta instalación al cerrarse el paso, así que las integraciones indicadas abajo no se han contrastado con ellas. Las entradas se conservan tal como se declararon."
|
|
5420
|
+
},
|
|
5421
|
+
"unknownGeneratorBadge": "No registrada"
|
|
5397
5422
|
},
|
|
5398
5423
|
"sandbox": {
|
|
5399
5424
|
"title": "Sandbox: pruebas de prompts y modelos",
|
package/i18n/locales/fr.json
CHANGED
|
@@ -497,6 +497,12 @@
|
|
|
497
497
|
"unexpected": "Le serveur a renvoyé une réponse inattendue. Réessayez, et transmettez les détails à l'opérateur du déploiement si le problème persiste."
|
|
498
498
|
}
|
|
499
499
|
},
|
|
500
|
+
"unavailable": {
|
|
501
|
+
"description": {
|
|
502
|
+
"binary_generators_unreachable": "Les intégrations génératives de ce déploiement n'ont pas pu être lues pour l'instant, l'exécution n'a donc pas démarré. Rien n'est mal configuré et aucune modification n'est nécessaire : réessayez une fois la connexion rétablie.",
|
|
503
|
+
"foundational_builtins_unreachable": "Les services fondamentaux intégrés de ce déploiement n'ont pas pu être lus pour l'instant. Rien n'est mal configuré et aucune modification n'est nécessaire : réessayez une fois la connexion rétablie."
|
|
504
|
+
}
|
|
505
|
+
},
|
|
500
506
|
"action": {
|
|
501
507
|
"retryFailed": "Échec de la nouvelle tentative",
|
|
502
508
|
"startFailed": "Échec du démarrage",
|
|
@@ -549,6 +555,7 @@
|
|
|
549
555
|
"pipeline_schedule_intake_unconfigured": "La planification n'a pas de collecte de tickets",
|
|
550
556
|
"foundational_service_exists": "Ce service fondamental existe déjà",
|
|
551
557
|
"binary_output_service_invalid": "Service des sorties binaires introuvable",
|
|
558
|
+
"binary_output_generator_invalid": "Générateur de sorties binaires introuvable",
|
|
552
559
|
"foundational_service_not_inherited": "Ce tableau a enregistré ce service"
|
|
553
560
|
},
|
|
554
561
|
"description": {
|
|
@@ -580,6 +587,7 @@
|
|
|
580
587
|
"pipeline_schedule_intake_unconfigured": "Une étape de collecte de bogues tire son travail des réglages de collecte de tickets de la planification, et la planification associée n'en a aucun. Configurez d'abord la collecte de tickets sur la planification.",
|
|
581
588
|
"foundational_service_exists": "Un service fondamental portant cet identifiant est déjà enregistré dans cette portée. Ouvrez l’entrée existante et modifiez-la : deux services ne peuvent pas partager un identifiant, car c’est le nom qu’un architecte emploie dans sa conception.",
|
|
582
589
|
"binary_output_service_invalid": "Une étape qui génère des sorties binaires sélectionne un service fondamental que le catalogue de cet espace de travail ne peut pas résoudre : l’identifiant est inconnu, ou le service de stockage choisi ne porte pas la capacité asset-storage. Corrigez la sélection de l’étape ou enregistrez le service, puis relancez.",
|
|
590
|
+
"binary_output_generator_invalid": "Une étape qui génère des sorties binaires sélectionne une intégration générative que ce déploiement n’enregistre pas, ou aucune des intégrations sélectionnées ne produit un type de contenu que l’étape doit livrer. Les intégrations génératives sont enregistrées dans le code du déploiement, pas dans cet espace de travail : enregistrez-la ou corrigez la sélection de l’étape, puis relancez.",
|
|
583
591
|
"foundational_service_not_inherited": "L'écartement s'applique à un service hérité du compte. Cet identifiant est enregistré par ce tableau : il n'y a donc rien à écarter - supprimez plutôt l'entrée propre au tableau."
|
|
584
592
|
},
|
|
585
593
|
"action": {
|
|
@@ -4092,7 +4100,21 @@
|
|
|
4092
4100
|
"binaryOutputMissing": "Ce service de stockage n'est plus dans le catalogue ; choisissez-en un autre.",
|
|
4093
4101
|
"binaryOutputNotStorage": "Ce service ne déclare plus la capacité {capability}, les exécutions seront donc refusées ; choisissez-en un autre.",
|
|
4094
4102
|
"binaryOutputContextMissing": "Ces services de contexte ne sont plus dans le catalogue : {ids}",
|
|
4095
|
-
"binaryOutputUnavailable": "Le catalogue des services fondamentaux est injoignable, rien ne peut donc encore être choisi ici."
|
|
4103
|
+
"binaryOutputUnavailable": "Le catalogue des services fondamentaux est injoignable, rien ne peut donc encore être choisi ici.",
|
|
4104
|
+
"binaryOutputGenerators": "Générer avec",
|
|
4105
|
+
"binaryOutputGeneratorsUnavailable": "Les intégrations génératives de ce déploiement n'ont pas pu être lues, donc rien ne peut encore être choisi ici. C'est un problème de connexion, pas un enregistrement manquant.",
|
|
4106
|
+
"binaryOutputGeneratorsPlaceholder": "Aucune intégration sélectionnée",
|
|
4107
|
+
"binaryOutputModalities": "Doit livrer",
|
|
4108
|
+
"binaryOutputModalitiesPlaceholder": "Aucune exigence",
|
|
4109
|
+
"binaryOutputGeneratorMissing": "Ce déploiement n'enregistre pas ces intégrations génératives : {ids}. Elles s'enregistrent dans le code du déploiement, pas dans cet espace de travail.",
|
|
4110
|
+
"binaryOutputModalityUncovered": "Aucune intégration sélectionnée ne produit {modalities}, que cette étape doit livrer.",
|
|
4111
|
+
"binaryOutputModality": {
|
|
4112
|
+
"image": "Images",
|
|
4113
|
+
"audio": "Audio",
|
|
4114
|
+
"video": "Vidéo",
|
|
4115
|
+
"3d": "Modèles 3D",
|
|
4116
|
+
"document": "Documents"
|
|
4117
|
+
}
|
|
4096
4118
|
},
|
|
4097
4119
|
"progress": {
|
|
4098
4120
|
"status": {
|
|
@@ -5392,8 +5414,11 @@
|
|
|
5392
5414
|
"targetUnknown": "Le catalogue ne contient plus le service de stockage propre à cette étape ({id}), donc rien ci-dessous n'a pu être vérifié par rapport à lui. Enregistrez-le de nouveau, ou orientez l'étape vers un autre service.",
|
|
5393
5415
|
"misdirected": "1 artefact est allé vers un service autre que {target}. | {count} artefacts sont allés vers un service autre que {target}.",
|
|
5394
5416
|
"invalidEntries": "1 entrée déclarée a été écartée : elle ne nommait ni service ni emplacement. | {count} entrées déclarées ont été écartées : elles ne nommaient ni service ni emplacement.",
|
|
5395
|
-
"omitted": "1 artefact supplémentaire a été déclaré au-delà de la limite du rapport et n'est pas listé. | {count} artefacts supplémentaires ont été déclarés au-delà de la limite du rapport et ne sont pas listés."
|
|
5396
|
-
|
|
5417
|
+
"omitted": "1 artefact supplémentaire a été déclaré au-delà de la limite du rapport et n'est pas listé. | {count} artefacts supplémentaires ont été déclarés au-delà de la limite du rapport et ne sont pas listés.",
|
|
5418
|
+
"unknownGenerators": "A nommé une intégration générative que ce déploiement n'enregistre pas : {ids}. L'entrée est conservée telle que déclarée ; l'intégration s'enregistre dans le code du déploiement, pas dans cet espace de travail. | A nommé des intégrations génératives que ce déploiement n'enregistre pas : {ids}. Leurs entrées sont conservées telles que déclarées ; les intégrations s'enregistrent dans le code du déploiement, pas dans cet espace de travail.",
|
|
5419
|
+
"generatorsUnverified": "Les intégrations génératives de ce déploiement n'ont pas pu être lues à la clôture de l'étape, les intégrations citées ci-dessous n'ont donc pas été vérifiées. Les entrées sont conservées telles que déclarées."
|
|
5420
|
+
},
|
|
5421
|
+
"unknownGeneratorBadge": "Non enregistrée"
|
|
5397
5422
|
},
|
|
5398
5423
|
"sandbox": {
|
|
5399
5424
|
"title": "Bac à sable : test de prompts et de modèles",
|
package/i18n/locales/he.json
CHANGED
|
@@ -497,6 +497,12 @@
|
|
|
497
497
|
"unexpected": "השרת החזיר תגובה בלתי צפויה. נסה שוב, ואם התקלה חוזרת שתף את הפרטים עם מפעיל הפריסה."
|
|
498
498
|
}
|
|
499
499
|
},
|
|
500
|
+
"unavailable": {
|
|
501
|
+
"description": {
|
|
502
|
+
"binary_generators_unreachable": "לא ניתן היה לקרוא כרגע את האינטגרציות הגנרטיביות של הפריסה הזו, ולכן ההרצה לא התחילה. אין כאן תצורה שגויה ולא נדרש שום שינוי: נסו שוב כשהחיבור יחזור.",
|
|
503
|
+
"foundational_builtins_unreachable": "לא ניתן היה לקרוא כרגע את שירותי הבסיס המובנים של הפריסה הזו. אין כאן תצורה שגויה ולא נדרש שום שינוי: נסו שוב כשהחיבור יחזור."
|
|
504
|
+
}
|
|
505
|
+
},
|
|
500
506
|
"action": {
|
|
501
507
|
"retryFailed": "הניסיון החוזר נכשל",
|
|
502
508
|
"startFailed": "ההפעלה נכשלה",
|
|
@@ -549,6 +555,7 @@
|
|
|
549
555
|
"pipeline_schedule_intake_unconfigured": "לתזמון אין קליטת פניות",
|
|
550
556
|
"foundational_service_exists": "שירות תשתית כזה כבר קיים",
|
|
551
557
|
"binary_output_service_invalid": "לא ניתן לזהות את השירות לפלט בינארי",
|
|
558
|
+
"binary_output_generator_invalid": "לא ניתן לזהות את מחולל הפלט הבינארי",
|
|
552
559
|
"foundational_service_not_inherited": "הלוח הזה רשם את השירות"
|
|
553
560
|
},
|
|
554
561
|
"description": {
|
|
@@ -580,6 +587,7 @@
|
|
|
580
587
|
"pipeline_schedule_intake_unconfigured": "שלב קליטת באגים שואב את עבודתו מהגדרות קליטת הפניות של התזמון, ולתזמון המקושר אין כאלה. הגדירו קודם קליטת פניות בתזמון.",
|
|
581
588
|
"foundational_service_exists": "שירות תשתית עם מזהה זה כבר רשום בהיקף הזה. פתחו את הרשומה הקיימת וערכו אותה — שני שירותים אינם יכולים לחלוק מזהה, מפני שהמזהה הוא השם שארכיטקט מציין בתכנון שלו.",
|
|
582
589
|
"binary_output_service_invalid": "שלב שמייצר פלט בינארי בוחר שירות תשתית שהקטלוג של סביבת העבודה אינו יכול לזהות: המזהה אינו מוכר, או ששירות האחסון שנבחר אינו נושא את היכולת asset-storage. תקנו את הבחירה בשלב או רשמו את השירות, ואז התחילו מחדש.",
|
|
590
|
+
"binary_output_generator_invalid": "שלב שמייצר פלט בינארי בוחר אינטגרציה גנרטיבית שהפריסה הזו אינה רושמת, או שאף אחת מהאינטגרציות שנבחרו אינה מייצרת סוג תוכן שהשלב אמור לספק. אינטגרציות גנרטיביות נרשמות בקוד של הפריסה ולא במרחב העבודה הזה: רשמו אותה או תקנו את הבחירה בשלב, ואז התחילו מחדש.",
|
|
583
591
|
"foundational_service_not_inherited": "החרגה חלה על שירות שנורש מהחשבון. המזהה הזה רשום על ידי הלוח הזה, ולכן אין מה להחריג - מחקו במקום זאת את הרשומה של הלוח עצמו."
|
|
584
592
|
},
|
|
585
593
|
"action": {
|
|
@@ -4103,7 +4111,21 @@
|
|
|
4103
4111
|
"binaryOutputMissing": "שירות אחסון זה כבר אינו בקטלוג; בחר אחר.",
|
|
4104
4112
|
"binaryOutputNotStorage": "השירות הזה כבר אינו מצהיר על יכולת {capability}, ולכן הרצות יידחו; בחר אחר.",
|
|
4105
4113
|
"binaryOutputContextMissing": "שירותי ההקשר האלה כבר אינם בקטלוג: {ids}",
|
|
4106
|
-
"binaryOutputUnavailable": "קטלוג שירותי הבסיס אינו זמין, ולכן עדיין אי אפשר לבחור כאן דבר."
|
|
4114
|
+
"binaryOutputUnavailable": "קטלוג שירותי הבסיס אינו זמין, ולכן עדיין אי אפשר לבחור כאן דבר.",
|
|
4115
|
+
"binaryOutputGenerators": "ליצור באמצעות",
|
|
4116
|
+
"binaryOutputGeneratorsUnavailable": "לא ניתן היה לקרוא את האינטגרציות הגנרטיביות של הפריסה הזו, ולכן עדיין אי אפשר לבחור כאן דבר. זו תקלת חיבור, לא רישום חסר.",
|
|
4117
|
+
"binaryOutputGeneratorsPlaceholder": "לא נבחרה אינטגרציה",
|
|
4118
|
+
"binaryOutputModalities": "חייב לספק",
|
|
4119
|
+
"binaryOutputModalitiesPlaceholder": "ללא דרישה",
|
|
4120
|
+
"binaryOutputGeneratorMissing": "ההתקנה הזו אינה רושמת את האינטגרציות הגנרטיביות האלה: {ids}. הן נרשמות בקוד ההתקנה, לא במרחב העבודה הזה.",
|
|
4121
|
+
"binaryOutputModalityUncovered": "אף אינטגרציה שנבחרה אינה מייצרת {modalities}, שהשלב הזה אמור לספק.",
|
|
4122
|
+
"binaryOutputModality": {
|
|
4123
|
+
"image": "תמונות",
|
|
4124
|
+
"audio": "אודיו",
|
|
4125
|
+
"video": "וידאו",
|
|
4126
|
+
"3d": "מודלים תלת-ממדיים",
|
|
4127
|
+
"document": "מסמכים"
|
|
4128
|
+
}
|
|
4107
4129
|
},
|
|
4108
4130
|
"progress": {
|
|
4109
4131
|
"status": {
|
|
@@ -5403,8 +5425,11 @@
|
|
|
5403
5425
|
"targetUnknown": "הקטלוג כבר אינו מכיל את שירות האחסון של השלב הזה ({id}), ולכן לא ניתן היה להשוות מולו דבר ממה שלהלן. רשום אותו מחדש, או הפנה את השלב לשירות אחר.",
|
|
5404
5426
|
"misdirected": "פריט אחד הגיע לשירות אחר מ- {target}. | {count} פריטים הגיעו לשירות אחר מ- {target}.",
|
|
5405
5427
|
"invalidEntries": "רשומה מוצהרת אחת נדחתה: לא צוינו בה שירות ומיקום. | {count} רשומות מוצהרות נדחו: לא צוינו בהן שירות ומיקום.",
|
|
5406
|
-
"omitted": "פריט נוסף אחד הוצהר מעבר למגבלת הדוח ואינו מופיע ברשימה. | {count} פריטים נוספים הוצהרו מעבר למגבלת הדוח ואינם מופיעים ברשימה."
|
|
5407
|
-
|
|
5428
|
+
"omitted": "פריט נוסף אחד הוצהר מעבר למגבלת הדוח ואינו מופיע ברשימה. | {count} פריטים נוספים הוצהרו מעבר למגבלת הדוח ואינם מופיעים ברשימה.",
|
|
5429
|
+
"unknownGenerators": "צוינה אינטגרציה גנרטיבית שההתקנה הזו אינה רושמת: {ids}. הרשומה נשמרת כפי שהוצהרה; האינטגרציה נרשמת בקוד ההתקנה, לא במרחב העבודה הזה. | צוינו אינטגרציות גנרטיביות שההתקנה הזו אינה רושמת: {ids}. הרשומות נשמרות כפי שהוצהרו; אינטגרציות נרשמות בקוד ההתקנה, לא במרחב העבודה הזה.",
|
|
5430
|
+
"generatorsUnverified": "לא ניתן היה לקרוא את האינטגרציות הגנרטיביות של הפריסה הזו בעת סיום השלב, ולכן האינטגרציות המצוינות למטה לא נבדקו מולן. הרשומות נשמרות כפי שהוצהרו."
|
|
5431
|
+
},
|
|
5432
|
+
"unknownGeneratorBadge": "לא רשומה"
|
|
5408
5433
|
},
|
|
5409
5434
|
"sandbox": {
|
|
5410
5435
|
"title": "Sandbox: בדיקת פרומפטים ומודלים",
|