@cat-factory/app 0.296.6 → 0.298.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.
@@ -766,6 +766,10 @@
766
766
  "env_test_not_provisionable": "Environment handler not configured",
767
767
  "env_test_no_vcs": "Git provider not connected",
768
768
  "env_test_connection_failed": "Environment connection failed",
769
+ "env_test_probe_unavailable": "Agent dry runs not available here",
770
+ "env_test_probe_model_unavailable": "Dry run model cannot run",
771
+ "env_test_already_running": "Self-test already running",
772
+ "env_test_over_budget": "Spend budget reached",
769
773
  "prompt_revision_conflict": "Prompt changed by someone else",
770
774
  "pipeline_schedule_attached": "Recurring schedule uses this pipeline",
771
775
  "pipeline_schedule_requires_recurring": "Recurring schedule needs this pipeline",
@@ -815,6 +819,10 @@
815
819
  "env_test_no_vcs": "The self-test needs a git provider to create and delete its throwaway branch, but this workspace isn't connected to one.",
816
820
  "env_test_connection_failed": "The environment handler for this service failed its connection test. Check its endpoint, credentials and project settings, then re-test the connection.",
817
821
  "env_test_connection_failed_detail": "The environment handler for this service failed its connection test: {detail}. Check its endpoint, credentials and project settings, then re-test the connection.",
822
+ "env_test_probe_unavailable": "An agent dry run needs a container runner and a connected repository. One of them is missing here, so only the provisioning self-test can run.",
823
+ "env_test_probe_model_unavailable": "This service's dry run resolves to a model this deployment cannot dispatch: either the LLM proxy cannot serve its provider, or it needs a subscription no one has connected. Change the model preset for the prober (or the frame's own pinned model), or connect the subscription. The provisioning self-test needs no model and still runs.",
824
+ "env_test_already_running": "A self-test is already running for this service. Each one provisions its own throwaway environment, so only one runs at a time. Wait for it to finish, or stop it first.",
825
+ "env_test_over_budget": "An agent dry run is a billable model call, and this workspace has reached a spend budget. Raise the budget or wait for the billing period to reset. The provisioning self-test costs nothing and still runs.",
818
826
  "@env_test_connection_failed_detail": {
819
827
  "description": "Keep the named placeholder for the failure detail intact (the environment provider's connection-test error message, injected at runtime)."
820
828
  },
@@ -1231,17 +1239,68 @@
1231
1239
  "hint": "Runs the whole lifecycle against a throwaway branch: create branch, provision, tear down, delete branch.",
1232
1240
  "start": "Test environment creation",
1233
1241
  "stop": "Stop",
1234
- "infraless": "Configure a provision type above to test environment creation.",
1242
+ "infraless": "Configure a provision type above to run either self-test.",
1235
1243
  "running": "Testing: {stage}",
1236
1244
  "succeeded": "Test passed: the environment was created and torn down, and the branch was deleted.",
1237
1245
  "failed": "Test failed",
1238
1246
  "stage": {
1239
1247
  "creating_branch": "creating branch",
1240
1248
  "provisioning": "provisioning environment",
1249
+ "probing": "probing with an agent",
1241
1250
  "tearing_down": "tearing down environment",
1242
1251
  "deleting_branch": "deleting branch",
1243
1252
  "done": "done"
1244
1253
  }
1254
+ },
1255
+ "envProbe": {
1256
+ "title": "Test agent dry run",
1257
+ "hint": "Provisions a throwaway environment, has an agent attempt a few real operations against it, then tears it all down. Reports what it tried and what it could not work out.",
1258
+ "surfaceApi": "This service is driven over HTTP.",
1259
+ "surfaceUi": "This frontend is driven in a browser.",
1260
+ "start": "Test agent dry run",
1261
+ "completed": "Dry run finished: the environment was torn down and the branch deleted.",
1262
+ "failed": "Dry run failed",
1263
+ "verdict": {
1264
+ "operable": "An agent can operate this service.",
1265
+ "partially_operable": "An agent can only partly operate this service.",
1266
+ "inoperable": "An agent could not operate this service."
1267
+ },
1268
+ "counts": "{succeeded} of {attempted} operations succeeded; {authenticated} of those went through authentication.",
1269
+ "@counts": {
1270
+ "description": "Keep all three named placeholders intact: how many operations succeeded, how many were attempted, and how many of the successes went through authentication. The platform computes these from the agent report; the phrasing may be reordered to suit the language."
1271
+ },
1272
+ "missingContext": "What the agent was not told",
1273
+ "blockers": "What stopped the dry run",
1274
+ "operations": "Operations attempted",
1275
+ "operationsOmitted": "Reported operations dropped at the cap: {count}.",
1276
+ "@operationsOmitted": {
1277
+ "description": "Keep the named placeholder for the number of reported operations the platform dropped at its cap. Deliberately not pluralized: the count follows a colon so no noun has to agree with it."
1278
+ },
1279
+ "operationsUnreadable": "Reported operations the platform could not read: {count}.",
1280
+ "@operationsUnreadable": {
1281
+ "description": "Keep the named placeholder for the number of reported operations the platform could not read (they carried no usable name). Deliberately not pluralized: the count follows a colon so no noun has to agree with it."
1282
+ },
1283
+ "progress": "({completed} of {total} steps done)",
1284
+ "@progress": {
1285
+ "description": "Keep both named placeholders: how many of the prober's steps are done, and how many there are in total. Rendered directly after the running stage label, in parentheses."
1286
+ },
1287
+ "authenticated": "(authenticated)",
1288
+ "model": "Model: {model}",
1289
+ "@model": {
1290
+ "description": "Keep the named placeholder for the model identifier (e.g. `workers-ai:qwen`), which is injected verbatim and never translated."
1291
+ },
1292
+ "failure": {
1293
+ "auth_missing": "No credential supplied",
1294
+ "auth_rejected": "Credential refused",
1295
+ "access_unclear": "Unclear how to authenticate",
1296
+ "endpoint_unknown": "Could not find what to call",
1297
+ "unreachable": "Environment unreachable",
1298
+ "timeout": "Timed out",
1299
+ "server_error": "Service error",
1300
+ "bad_request": "Request refused as malformed",
1301
+ "tooling_missing": "No client or browser available",
1302
+ "other": "Other"
1303
+ }
1245
1304
  }
1246
1305
  },
1247
1306
  "agentConfig": {
@@ -688,6 +688,10 @@
688
688
  "env_test_not_provisionable": "Gestor de entorno no configurado",
689
689
  "env_test_no_vcs": "Proveedor de Git no conectado",
690
690
  "env_test_connection_failed": "Fallo de conexión del entorno",
691
+ "env_test_probe_unavailable": "Las ejecuciones en seco del agente no están disponibles aquí",
692
+ "env_test_probe_model_unavailable": "El modelo del ensayo no puede ejecutarse",
693
+ "env_test_already_running": "Ya hay una autoprueba en curso",
694
+ "env_test_over_budget": "Presupuesto de gasto alcanzado",
691
695
  "prompt_revision_conflict": "Otra persona cambió el prompt",
692
696
  "pipeline_schedule_attached": "Una programación recurrente usa esta canalización",
693
697
  "pipeline_schedule_requires_recurring": "Una programación recurrente necesita esta canalización",
@@ -737,6 +741,10 @@
737
741
  "env_test_no_vcs": "La autoprueba necesita un proveedor de Git para crear y eliminar su rama desechable, pero este espacio de trabajo no está conectado a ninguno.",
738
742
  "env_test_connection_failed": "El gestor de entornos de este servicio no superó su prueba de conexión. Revisa su endpoint, sus credenciales y la configuración del proyecto, y vuelve a probar la conexión.",
739
743
  "env_test_connection_failed_detail": "El gestor de entornos de este servicio no superó su prueba de conexión: {detail}. Revisa su endpoint, sus credenciales y la configuración del proyecto, y vuelve a probar la conexión.",
744
+ "env_test_probe_unavailable": "Una ejecución en seco del agente necesita un ejecutor de contenedores y un repositorio conectado. Aquí falta uno de ellos, así que solo puede ejecutarse la autoprueba de aprovisionamiento.",
745
+ "env_test_probe_model_unavailable": "El ensayo de este servicio resuelve a un modelo que este despliegue no puede lanzar: o el proxy de LLM no puede atender a su proveedor, o necesita una suscripción que nadie ha conectado. Cambie el preajuste de modelo del sondeador (o el modelo fijado en el marco), o conecte la suscripción. La autoprueba de aprovisionamiento no necesita modelo y sigue funcionando.",
746
+ "env_test_already_running": "Ya se está ejecutando una autoprueba para este servicio. Cada una aprovisiona su propio entorno desechable, así que solo se ejecuta una a la vez. Espera a que termine o deténla primero.",
747
+ "env_test_over_budget": "Una prueba de agente es una llamada de modelo facturable y este espacio de trabajo ha alcanzado su presupuesto de gasto. Aumenta el presupuesto o espera al siguiente periodo de facturación. La autoprueba de aprovisionamiento no cuesta nada y sigue funcionando.",
740
748
  "prompt_revision_conflict": "Otra edición de este prompt llegó primero. Recárgalo y vuelve a aplicar tu cambio encima.",
741
749
  "pipeline_schedule_attached": "Una programación recurrente todavía apunta a esta canalización, y cada ejecución que inicia la resuelve por su id. Desvincule o elimine esa programación antes de quitar la canalización.",
742
750
  "pipeline_schedule_requires_recurring": "Una programación recurrente todavía apunta a esta canalización, así que limitarla a un solo uso rompería cada ejecución futura. Desvincule primero esa programación.",
@@ -1135,17 +1143,53 @@
1135
1143
  "hint": "Ejecuta todo el ciclo de vida sobre una rama desechable: crear rama, aprovisionar, desmontar, eliminar rama.",
1136
1144
  "start": "Probar la creación del entorno",
1137
1145
  "stop": "Detener",
1138
- "infraless": "Configura arriba un tipo de aprovisionamiento para probar la creación del entorno.",
1146
+ "infraless": "Configura arriba un tipo de aprovisionamiento para ejecutar cualquiera de las dos autopruebas.",
1139
1147
  "running": "Probando: {stage}",
1140
1148
  "succeeded": "Prueba superada: el entorno se creó y se desmontó, y la rama se eliminó.",
1141
1149
  "failed": "La prueba falló",
1142
1150
  "stage": {
1143
1151
  "creating_branch": "creando rama",
1144
1152
  "provisioning": "aprovisionando entorno",
1153
+ "probing": "sondeo con un agente",
1145
1154
  "tearing_down": "desmontando entorno",
1146
1155
  "deleting_branch": "eliminando rama",
1147
1156
  "done": "listo"
1148
1157
  }
1158
+ },
1159
+ "envProbe": {
1160
+ "title": "Probar ejecución en seco del agente",
1161
+ "hint": "Aprovisiona un entorno desechable, deja que un agente intente varias operaciones reales contra él y luego lo desmonta todo. Informa de lo que intentó y de lo que no pudo averiguar.",
1162
+ "surfaceApi": "Este servicio se recorre por HTTP.",
1163
+ "surfaceUi": "Este frontend se recorre en un navegador.",
1164
+ "start": "Probar ejecución en seco del agente",
1165
+ "completed": "Ejecución en seco terminada: el entorno se desmontó y la rama se eliminó.",
1166
+ "failed": "La ejecución en seco falló",
1167
+ "verdict": {
1168
+ "operable": "Un agente puede operar este servicio.",
1169
+ "partially_operable": "Un agente solo puede operar parcialmente este servicio.",
1170
+ "inoperable": "Un agente no pudo operar este servicio."
1171
+ },
1172
+ "counts": "{succeeded} de {attempted} operaciones con éxito; {authenticated} de ellas con autenticación.",
1173
+ "missingContext": "Lo que no se le dijo al agente",
1174
+ "blockers": "Lo que detuvo la ejecución en seco",
1175
+ "operations": "Operaciones intentadas",
1176
+ "operationsOmitted": "Operaciones informadas descartadas por el límite: {count}.",
1177
+ "operationsUnreadable": "Operaciones informadas que la plataforma no pudo leer: {count}.",
1178
+ "progress": "({completed} de {total} pasos completados)",
1179
+ "authenticated": "(autenticada)",
1180
+ "model": "Modelo: {model}",
1181
+ "failure": {
1182
+ "auth_missing": "No se entregó ninguna credencial",
1183
+ "auth_rejected": "Credencial rechazada",
1184
+ "access_unclear": "No estaba claro cómo autenticarse",
1185
+ "endpoint_unknown": "No se encontró qué invocar",
1186
+ "unreachable": "Entorno inalcanzable",
1187
+ "timeout": "Tiempo de espera agotado",
1188
+ "server_error": "Error del servicio",
1189
+ "bad_request": "Solicitud rechazada por estar mal formada",
1190
+ "tooling_missing": "Sin cliente ni navegador disponibles",
1191
+ "other": "Otro"
1192
+ }
1149
1193
  }
1150
1194
  },
1151
1195
  "agentConfig": {
@@ -688,6 +688,10 @@
688
688
  "env_test_not_provisionable": "Gestionnaire d'environnement non configuré",
689
689
  "env_test_no_vcs": "Fournisseur Git non connecté",
690
690
  "env_test_connection_failed": "Échec de la connexion à l'environnement",
691
+ "env_test_probe_unavailable": "Essais à blanc d'agent indisponibles ici",
692
+ "env_test_probe_model_unavailable": "Le modèle du test à blanc ne peut pas être exécuté",
693
+ "env_test_already_running": "Auto-test déjà en cours",
694
+ "env_test_over_budget": "Budget de dépenses atteint",
691
695
  "prompt_revision_conflict": "Invite modifiée par quelqu'un d'autre",
692
696
  "pipeline_schedule_attached": "Une planification récurrente utilise ce pipeline",
693
697
  "pipeline_schedule_requires_recurring": "Une planification récurrente exige ce pipeline",
@@ -737,6 +741,10 @@
737
741
  "env_test_no_vcs": "L'auto-test a besoin d'un fournisseur Git pour créer et supprimer sa branche jetable, mais cet espace de travail n'est connecté à aucun.",
738
742
  "env_test_connection_failed": "Le gestionnaire d'environnement de ce service a échoué à son test de connexion. Vérifiez son point de terminaison, ses identifiants et les paramètres du projet, puis retestez la connexion.",
739
743
  "env_test_connection_failed_detail": "Le gestionnaire d'environnement de ce service a échoué à son test de connexion : {detail}. Vérifiez son point de terminaison, ses identifiants et les paramètres du projet, puis retestez la connexion.",
744
+ "env_test_probe_unavailable": "Un essai à blanc d'agent nécessite un exécuteur de conteneurs et un dépôt connecté. L'un d'eux manque ici, donc seul l'autotest de provisionnement peut s'exécuter.",
745
+ "env_test_probe_model_unavailable": "Le test à blanc de ce service pointe vers un modèle que ce déploiement ne peut pas lancer : soit le proxy LLM ne prend pas en charge son fournisseur, soit il faut un abonnement que personne n'a connecté. Changez le préréglage de modèle du sondeur (ou le modèle épinglé sur le cadre), ou connectez l'abonnement. L'autotest de provisionnement n'a besoin d'aucun modèle et continue de fonctionner.",
746
+ "env_test_already_running": "Un auto-test est déjà en cours pour ce service. Chacun provisionne son propre environnement jetable, donc un seul s'exécute à la fois. Attendez qu'il se termine ou arrêtez-le d'abord.",
747
+ "env_test_over_budget": "Un essai à blanc d'agent est un appel de modèle facturé, et cet espace de travail a atteint son budget de dépenses. Augmentez le budget ou attendez la prochaine période de facturation. L'auto-test de provisionnement ne coûte rien et reste disponible.",
740
748
  "prompt_revision_conflict": "Une autre modification de cette invite est arrivée en premier. Rechargez-la et réappliquez la vôtre par-dessus.",
741
749
  "pipeline_schedule_attached": "Une planification récurrente pointe encore vers ce pipeline, et chaque exécution qu'elle lance le résout par son identifiant. Détachez ou supprimez d'abord cette planification, puis retirez le pipeline.",
742
750
  "pipeline_schedule_requires_recurring": "Une planification récurrente pointe encore vers ce pipeline. Le limiter à une exécution unique casserait chaque exécution future. Détachez d'abord cette planification.",
@@ -1135,17 +1143,53 @@
1135
1143
  "hint": "Exécute tout le cycle de vie sur une branche jetable : créer la branche, provisionner, démonter, supprimer la branche.",
1136
1144
  "start": "Tester la création de l'environnement",
1137
1145
  "stop": "Arrêter",
1138
- "infraless": "Configurez un type de provisionnement ci-dessus pour tester la création de l'environnement.",
1146
+ "infraless": "Configurez un type de provisionnement ci-dessus pour lancer l'un des deux autotests.",
1139
1147
  "running": "Test en cours : {stage}",
1140
1148
  "succeeded": "Test réussi : l'environnement a été créé puis démonté, et la branche a été supprimée.",
1141
1149
  "failed": "Échec du test",
1142
1150
  "stage": {
1143
1151
  "creating_branch": "création de la branche",
1144
1152
  "provisioning": "provisionnement de l'environnement",
1153
+ "probing": "sondage par un agent",
1145
1154
  "tearing_down": "démontage de l'environnement",
1146
1155
  "deleting_branch": "suppression de la branche",
1147
1156
  "done": "terminé"
1148
1157
  }
1158
+ },
1159
+ "envProbe": {
1160
+ "title": "Tester l'essai à blanc de l'agent",
1161
+ "hint": "Provisionne un environnement jetable, demande à un agent d'y tenter quelques opérations réelles, puis démonte le tout. Rapporte ce qu'il a tenté et ce qu'il n'a pas pu déterminer.",
1162
+ "surfaceApi": "Ce service est sollicité en HTTP.",
1163
+ "surfaceUi": "Ce frontend est piloté dans un navigateur.",
1164
+ "start": "Tester l'essai à blanc de l'agent",
1165
+ "completed": "Essai à blanc terminé : l'environnement a été démonté et la branche supprimée.",
1166
+ "failed": "Échec de l'essai à blanc",
1167
+ "verdict": {
1168
+ "operable": "Un agent peut exploiter ce service.",
1169
+ "partially_operable": "Un agent ne peut exploiter ce service que partiellement.",
1170
+ "inoperable": "Un agent n'a pas pu exploiter ce service."
1171
+ },
1172
+ "counts": "{succeeded} opérations réussies sur {attempted} ; {authenticated} d'entre elles authentifiées.",
1173
+ "missingContext": "Ce qui n'a pas été communiqué à l'agent",
1174
+ "blockers": "Ce qui a arrêté l'essai à blanc",
1175
+ "operations": "Opérations tentées",
1176
+ "operationsOmitted": "Opérations rapportées écartées par la limite : {count}.",
1177
+ "operationsUnreadable": "Opérations signalées que la plateforme n'a pas pu lire : {count}.",
1178
+ "progress": "({completed} étapes sur {total} terminées)",
1179
+ "authenticated": "(authentifiée)",
1180
+ "model": "Modèle : {model}",
1181
+ "failure": {
1182
+ "auth_missing": "Aucune information d'identification fournie",
1183
+ "auth_rejected": "Information d'identification refusée",
1184
+ "access_unclear": "Méthode d'authentification indéterminée",
1185
+ "endpoint_unknown": "Impossible de trouver quoi appeler",
1186
+ "unreachable": "Environnement injoignable",
1187
+ "timeout": "Délai dépassé",
1188
+ "server_error": "Erreur du service",
1189
+ "bad_request": "Requête refusée car mal formée",
1190
+ "tooling_missing": "Aucun client ni navigateur disponible",
1191
+ "other": "Autre"
1192
+ }
1149
1193
  }
1150
1194
  },
1151
1195
  "agentConfig": {
@@ -688,6 +688,10 @@
688
688
  "env_test_not_provisionable": "מטפל הסביבה אינו מוגדר",
689
689
  "env_test_no_vcs": "ספק Git אינו מחובר",
690
690
  "env_test_connection_failed": "החיבור לסביבה נכשל",
691
+ "env_test_probe_unavailable": "הרצות יבשות של סוכן אינן זמינות כאן",
692
+ "env_test_probe_model_unavailable": "לא ניתן להריץ את המודל של הרצת היובש",
693
+ "env_test_already_running": "בדיקה עצמית כבר פועלת",
694
+ "env_test_over_budget": "הגעתם לתקרת התקציב",
691
695
  "prompt_revision_conflict": "ההנחיה שונתה על ידי מישהו אחר",
692
696
  "pipeline_schedule_attached": "תזמון חוזר משתמש בצינור הזה",
693
697
  "pipeline_schedule_requires_recurring": "תזמון חוזר זקוק לצינור הזה",
@@ -737,6 +741,10 @@
737
741
  "env_test_no_vcs": "הבדיקה העצמית זקוקה לספק Git כדי ליצור ולמחוק את הענף החד-פעמי שלה, אך סביבת עבודה זו אינה מחוברת לאף אחד.",
738
742
  "env_test_connection_failed": "מנהל הסביבה של שירות זה נכשל בבדיקת החיבור. בדקו את נקודת הקצה, פרטי ההזדהות והגדרות הפרויקט, ולאחר מכן בדקו שוב את החיבור.",
739
743
  "env_test_connection_failed_detail": "מנהל הסביבה של שירות זה נכשל בבדיקת החיבור: {detail}. בדקו את נקודת הקצה, פרטי ההזדהות והגדרות הפרויקט, ולאחר מכן בדקו שוב את החיבור.",
744
+ "env_test_probe_unavailable": "הרצה יבשה של סוכן דורשת מריץ קונטיינרים ומאגר מחובר. כאן חסר אחד מהם, ולכן אפשר להריץ רק את הבדיקה העצמית של הקמת הסביבה.",
745
+ "env_test_probe_model_unavailable": "הרצת היובש של השירות הזה מפנה למודל שהפריסה הזאת אינה יכולה להריץ: או שפרוקסי ה-LLM אינו מסוגל לשרת את הספק שלו, או שנדרש מנוי שאף אחד לא חיבר. שנו את פריסט המודל של הבודק (או את המודל המוצמד למסגרת), או חברו את המנוי. הבדיקה העצמית של ההקצאה אינה זקוקה למודל וממשיכה לרוץ.",
746
+ "env_test_already_running": "בדיקה עצמית כבר פועלת עבור שירות זה. כל בדיקה מקצה סביבה זמנית משלה, ולכן רק אחת פועלת בכל רגע. המתינו לסיומה או עצרו אותה תחילה.",
747
+ "env_test_over_budget": "הרצת ניסיון של סוכן היא קריאת מודל בתשלום, וסביבת העבודה הזו הגיעה לתקרת התקציב. הגדילו את התקציב או המתינו לתקופת החיוב הבאה. הבדיקה העצמית של ההקצאה אינה עולה דבר וממשיכה לפעול.",
740
748
  "prompt_revision_conflict": "עריכה אחרת של ההנחיה הזו נקלטה קודם. טענו אותה מחדש והחילו את השינוי שלכם מעליה.",
741
749
  "pipeline_schedule_attached": "תזמון חוזר עדיין מפנה לצינור הזה, וכל הרצה שהוא מתחיל מאתרת את הצינור לפי המזהה. נתקו או מחקו קודם את התזמון ההוא, ורק אז הסירו את הצינור.",
742
750
  "pipeline_schedule_requires_recurring": "תזמון חוזר עדיין מפנה לצינור הזה, ולכן הפיכתו לחד פעמי בלבד תשבור כל הרצה עתידית. נתקו קודם את התזמון ההוא.",
@@ -1135,17 +1143,53 @@
1135
1143
  "hint": "מריץ את כל מחזור החיים על ענף חד-פעמי: יצירת ענף, הקצאה, פירוק ומחיקת הענף.",
1136
1144
  "start": "בדיקת יצירת סביבה",
1137
1145
  "stop": "עצירה",
1138
- "infraless": "הגדירו סוג הקצאה למעלה כדי לבדוק את יצירת הסביבה.",
1146
+ "infraless": "הגדירו למעלה סוג הקמה כדי להריץ אחת משתי הבדיקות העצמיות.",
1139
1147
  "running": "בבדיקה: {stage}",
1140
1148
  "succeeded": "הבדיקה עברה: הסביבה נוצרה ופורקה, והענף נמחק.",
1141
1149
  "failed": "הבדיקה נכשלה",
1142
1150
  "stage": {
1143
1151
  "creating_branch": "יוצר ענף",
1144
1152
  "provisioning": "מקצה סביבה",
1153
+ "probing": "בדיקה על ידי סוכן",
1145
1154
  "tearing_down": "מפרק סביבה",
1146
1155
  "deleting_branch": "מוחק ענף",
1147
1156
  "done": "הושלם"
1148
1157
  }
1158
+ },
1159
+ "envProbe": {
1160
+ "title": "בדיקת הרצה יבשה של סוכן",
1161
+ "hint": "מקים סביבה חד-פעמית, נותן לסוכן לנסות בה כמה פעולות אמיתיות, ואז מפרק הכול. מדווח מה ניסה ומה לא הצליח להבין.",
1162
+ "surfaceApi": "השירות הזה נבדק דרך HTTP.",
1163
+ "surfaceUi": "הפרונטאנד הזה מופעל בדפדפן.",
1164
+ "start": "בדיקת הרצה יבשה של סוכן",
1165
+ "completed": "ההרצה היבשה הסתיימה: הסביבה פורקה והענף נמחק.",
1166
+ "failed": "ההרצה היבשה נכשלה",
1167
+ "verdict": {
1168
+ "operable": "סוכן יכול להפעיל את השירות הזה.",
1169
+ "partially_operable": "סוכן יכול להפעיל את השירות הזה רק באופן חלקי.",
1170
+ "inoperable": "סוכן לא הצליח להפעיל את השירות הזה."
1171
+ },
1172
+ "counts": "{succeeded} מתוך {attempted} פעולות הצליחו; {authenticated} מהן עברו אימות.",
1173
+ "missingContext": "מה לא נמסר לסוכן",
1174
+ "blockers": "מה עצר את ההרצה היבשה",
1175
+ "operations": "פעולות שנוסו",
1176
+ "operationsOmitted": "פעולות שדווחו ונשמטו בגלל המגבלה: {count}.",
1177
+ "operationsUnreadable": "פעולות שדווחו ולא ניתן היה לקרוא: {count}.",
1178
+ "progress": "({completed} מתוך {total} שלבים הושלמו)",
1179
+ "authenticated": "(עם אימות)",
1180
+ "model": "מודל: {model}",
1181
+ "failure": {
1182
+ "auth_missing": "לא נמסרו פרטי הזדהות",
1183
+ "auth_rejected": "פרטי ההזדהות נדחו",
1184
+ "access_unclear": "לא היה ברור כיצד להזדהות",
1185
+ "endpoint_unknown": "לא נמצא מה לקרוא",
1186
+ "unreachable": "הסביבה לא נגישה",
1187
+ "timeout": "חלף הזמן",
1188
+ "server_error": "שגיאה בשירות",
1189
+ "bad_request": "הבקשה נדחתה כשגויה",
1190
+ "tooling_missing": "אין לקוח או דפדפן זמינים",
1191
+ "other": "אחר"
1192
+ }
1149
1193
  }
1150
1194
  },
1151
1195
  "agentConfig": {
@@ -1691,17 +1691,53 @@
1691
1691
  "hint": "Esegue l'intero ciclo di vita su un branch usa e getta: crea branch, provisiona, smonta, elimina branch.",
1692
1692
  "start": "Prova la creazione dell'ambiente",
1693
1693
  "stop": "Ferma",
1694
- "infraless": "Configura sopra un tipo di provisioning per provare la creazione dell'ambiente.",
1694
+ "infraless": "Configura sopra un tipo di provisioning per eseguire uno dei due autotest.",
1695
1695
  "running": "Prova in corso: {stage}",
1696
1696
  "succeeded": "Prova superata: l'ambiente è stato creato e smontato, e il branch è stato eliminato.",
1697
1697
  "failed": "Prova fallita",
1698
1698
  "stage": {
1699
1699
  "creating_branch": "creazione del branch",
1700
1700
  "provisioning": "provisioning dell'ambiente",
1701
+ "probing": "sondaggio con un agente",
1701
1702
  "tearing_down": "smontaggio dell'ambiente",
1702
1703
  "deleting_branch": "eliminazione del branch",
1703
1704
  "done": "completato"
1704
1705
  }
1706
+ },
1707
+ "envProbe": {
1708
+ "title": "Prova a vuoto dell'agente",
1709
+ "hint": "Provvisiona un ambiente usa e getta, fa tentare a un agente alcune operazioni reali e poi smonta tutto. Riporta cosa ha tentato e cosa non è riuscito a capire.",
1710
+ "surfaceApi": "Questo servizio viene interrogato via HTTP.",
1711
+ "surfaceUi": "Questo frontend viene guidato in un browser.",
1712
+ "start": "Prova a vuoto dell'agente",
1713
+ "completed": "Prova a vuoto conclusa: l'ambiente è stato smontato e il branch eliminato.",
1714
+ "failed": "Prova a vuoto fallita",
1715
+ "verdict": {
1716
+ "operable": "Un agente può operare questo servizio.",
1717
+ "partially_operable": "Un agente può operare questo servizio solo in parte.",
1718
+ "inoperable": "Un agente non è riuscito a operare questo servizio."
1719
+ },
1720
+ "counts": "{succeeded} operazioni riuscite su {attempted}; {authenticated} di queste autenticate.",
1721
+ "missingContext": "Ciò che non è stato detto all'agente",
1722
+ "blockers": "Ciò che ha bloccato la prova a vuoto",
1723
+ "operations": "Operazioni tentate",
1724
+ "operationsOmitted": "Operazioni riportate scartate per il limite: {count}.",
1725
+ "operationsUnreadable": "Operazioni segnalate che la piattaforma non è riuscita a leggere: {count}.",
1726
+ "progress": "({completed} di {total} passaggi completati)",
1727
+ "authenticated": "(autenticata)",
1728
+ "model": "Modello: {model}",
1729
+ "failure": {
1730
+ "auth_missing": "Nessuna credenziale fornita",
1731
+ "auth_rejected": "Credenziale rifiutata",
1732
+ "access_unclear": "Non era chiaro come autenticarsi",
1733
+ "endpoint_unknown": "Non è stato possibile capire cosa chiamare",
1734
+ "unreachable": "Ambiente non raggiungibile",
1735
+ "timeout": "Tempo scaduto",
1736
+ "server_error": "Errore del servizio",
1737
+ "bad_request": "Richiesta rifiutata perché malformata",
1738
+ "tooling_missing": "Nessun client o browser disponibile",
1739
+ "other": "Altro"
1740
+ }
1705
1741
  }
1706
1742
  },
1707
1743
  "agentConfig": {
@@ -6163,6 +6199,10 @@
6163
6199
  "env_test_not_provisionable": "Handler dell'ambiente non configurato",
6164
6200
  "env_test_no_vcs": "Provider Git non connesso",
6165
6201
  "env_test_connection_failed": "Connessione all'ambiente non riuscita",
6202
+ "env_test_probe_unavailable": "Prove a vuoto dell'agente non disponibili qui",
6203
+ "env_test_probe_model_unavailable": "Il modello della prova a vuoto non è eseguibile",
6204
+ "env_test_already_running": "Autotest già in esecuzione",
6205
+ "env_test_over_budget": "Budget di spesa raggiunto",
6166
6206
  "prompt_revision_conflict": "Prompt modificato da qualcun altro",
6167
6207
  "pipeline_schedule_attached": "Una pianificazione ricorrente usa questa pipeline",
6168
6208
  "pipeline_schedule_requires_recurring": "Una pianificazione ricorrente richiede questa pipeline",
@@ -6212,6 +6252,10 @@
6212
6252
  "env_test_no_vcs": "L'autotest ha bisogno di un provider Git per creare ed eliminare il suo branch usa e getta, ma questo workspace non è collegato a nessuno.",
6213
6253
  "env_test_connection_failed": "Il gestore dell'ambiente di questo servizio non ha superato il test di connessione. Controlla endpoint, credenziali e impostazioni del progetto, poi ripeti il test della connessione.",
6214
6254
  "env_test_connection_failed_detail": "Il gestore dell'ambiente di questo servizio non ha superato il test di connessione: {detail}. Controlla endpoint, credenziali e impostazioni del progetto, poi ripeti il test della connessione.",
6255
+ "env_test_probe_unavailable": "Una prova a vuoto dell’agente richiede un runner di container e un repository collegato. Qui ne manca uno, quindi può essere eseguito solo l’autotest di provisioning.",
6256
+ "env_test_probe_model_unavailable": "La prova a vuoto di questo servizio punta a un modello che questa installazione non può avviare: il proxy LLM non supporta il suo provider, oppure serve un abbonamento che nessuno ha collegato. Cambia il preset del modello per il sondatore (o il modello fissato sul riquadro), oppure collega l’abbonamento. L’autotest di provisioning non richiede alcun modello e continua a funzionare.",
6257
+ "env_test_already_running": "È già in esecuzione un autotest per questo servizio. Ognuno effettua il provisioning del proprio ambiente temporaneo, quindi ne viene eseguito uno alla volta. Attendi che finisca oppure interrompilo.",
6258
+ "env_test_over_budget": "Una prova a vuoto dell'agente è una chiamata al modello a pagamento e questo workspace ha raggiunto il budget di spesa. Aumenta il budget o attendi il prossimo periodo di fatturazione. L'autotest di provisioning non ha costi e resta disponibile.",
6215
6259
  "prompt_revision_conflict": "Un'altra modifica a questo prompt è arrivata prima. Ricaricalo e riapplica la tua sopra.",
6216
6260
  "pipeline_schedule_attached": "Una pianificazione ricorrente punta ancora a questa pipeline e ogni esecuzione che avvia la risolve tramite id. Scollega o elimina prima quella pianificazione, poi rimuovi la pipeline.",
6217
6261
  "pipeline_schedule_requires_recurring": "Una pianificazione ricorrente punta ancora a questa pipeline, quindi renderla solo una tantum interromperebbe ogni esecuzione futura. Scollega prima quella pianificazione.",
@@ -688,6 +688,10 @@
688
688
  "env_test_not_provisionable": "環境ハンドラーが設定されていません",
689
689
  "env_test_no_vcs": "Git プロバイダーが未接続です",
690
690
  "env_test_connection_failed": "環境への接続に失敗しました",
691
+ "env_test_probe_unavailable": "ここではエージェントのドライランを利用できません",
692
+ "env_test_probe_model_unavailable": "ドライランのモデルを実行できません",
693
+ "env_test_already_running": "セルフテストは既に実行中です",
694
+ "env_test_over_budget": "利用予算の上限に達しました",
691
695
  "prompt_revision_conflict": "別のユーザーがプロンプトを変更しました",
692
696
  "pipeline_schedule_attached": "定期スケジュールがこのパイプラインを使用しています",
693
697
  "pipeline_schedule_requires_recurring": "定期スケジュールにこのパイプラインが必要です",
@@ -737,6 +741,10 @@
737
741
  "env_test_no_vcs": "セルフテストは使い捨てブランチの作成と削除のために Git プロバイダーを必要としますが、このワークスペースはいずれにも接続されていません。",
738
742
  "env_test_connection_failed": "このサービスの環境ハンドラーが接続テストに失敗しました。エンドポイント、認証情報、プロジェクト設定を確認してから、接続を再テストしてください。",
739
743
  "env_test_connection_failed_detail": "このサービスの環境ハンドラーが接続テストに失敗しました: {detail}。エンドポイント、認証情報、プロジェクト設定を確認してから、接続を再テストしてください。",
744
+ "env_test_probe_unavailable": "エージェントのドライランには、コンテナーランナーと接続済みのリポジトリが必要です。いずれかが欠けているため、ここではプロビジョニングの自己テストのみ実行できます。",
745
+ "env_test_probe_model_unavailable": "このサービスのドライランは、このデプロイでは実行できないモデルに解決されます。LLM プロキシがそのプロバイダーに対応していないか、誰も接続していないサブスクリプションが必要です。プローブ用のモデルプリセット(またはフレームに固定されたモデル)を変更するか、サブスクリプションを接続してください。プロビジョニングのセルフテストはモデルを必要とせず、引き続き実行できます。",
746
+ "env_test_already_running": "このサービスではすでにセルフテストが実行中です。各テストは独自の使い捨て環境をプロビジョニングするため、同時に実行できるのは 1 つだけです。終了を待つか、先に停止してください。",
747
+ "env_test_over_budget": "エージェントのドライランは課金対象のモデル呼び出しであり、このワークスペースは利用予算の上限に達しています。予算を引き上げるか、次の請求期間までお待ちください。プロビジョニングのセルフテストは無料で、引き続き実行できます。",
740
748
  "prompt_revision_conflict": "このプロンプトへの別の編集が先に反映されました。読み込み直して、その上に変更をやり直してください。",
741
749
  "pipeline_schedule_attached": "定期スケジュールがまだこのパイプラインを参照しており、開始する実行はすべて ID でパイプラインを解決します。先にそのスケジュールを解除または削除してから、パイプラインを削除してください。",
742
750
  "pipeline_schedule_requires_recurring": "定期スケジュールがまだこのパイプラインを参照しているため、単発専用にすると今後の実行がすべて失敗します。先にそのスケジュールを解除してください。",
@@ -1135,17 +1143,53 @@
1135
1143
  "hint": "使い捨てブランチに対してライフサイクル全体を実行します。ブランチ作成、プロビジョニング、破棄、ブランチ削除の順に行います。",
1136
1144
  "start": "環境作成のテスト",
1137
1145
  "stop": "停止",
1138
- "infraless": "環境作成をテストするには、上でプロビジョニングの種類を設定してください。",
1146
+ "infraless": "いずれかの自己テストを実行するには、上でプロビジョニングの種類を設定してください。",
1139
1147
  "running": "テスト中: {stage}",
1140
1148
  "succeeded": "テスト成功: 環境が作成されて破棄され、ブランチが削除されました。",
1141
1149
  "failed": "テスト失敗",
1142
1150
  "stage": {
1143
1151
  "creating_branch": "ブランチを作成中",
1144
1152
  "provisioning": "環境をプロビジョニング中",
1153
+ "probing": "エージェントによる調査",
1145
1154
  "tearing_down": "環境を破棄中",
1146
1155
  "deleting_branch": "ブランチを削除中",
1147
1156
  "done": "完了"
1148
1157
  }
1158
+ },
1159
+ "envProbe": {
1160
+ "title": "エージェントのドライランをテスト",
1161
+ "hint": "使い捨ての環境を用意し、エージェントに実際の操作をいくつか試させてから、すべてを撤去します。何を試したか、何が分からなかったかを報告します。",
1162
+ "surfaceApi": "このサービスは HTTP 経由で操作します。",
1163
+ "surfaceUi": "このフロントエンドはブラウザーで操作します。",
1164
+ "start": "エージェントのドライランをテスト",
1165
+ "completed": "ドライランが完了しました。環境は撤去され、ブランチも削除されました。",
1166
+ "failed": "ドライランが失敗しました",
1167
+ "verdict": {
1168
+ "operable": "エージェントはこのサービスを操作できます。",
1169
+ "partially_operable": "エージェントはこのサービスを部分的にしか操作できません。",
1170
+ "inoperable": "エージェントはこのサービスを操作できませんでした。"
1171
+ },
1172
+ "counts": "{attempted} 件のうち {succeeded} 件が成功し、そのうち {authenticated} 件は認証を伴いました。",
1173
+ "missingContext": "エージェントに伝えられていなかったこと",
1174
+ "blockers": "ドライランを止めた原因",
1175
+ "operations": "試行した操作",
1176
+ "operationsOmitted": "上限により省略された報告済みの操作: {count}",
1177
+ "operationsUnreadable": "プラットフォームが読み取れなかった報告済み操作: {count} 件。",
1178
+ "progress": "({total} ステップ中 {completed} 完了)",
1179
+ "authenticated": "(認証あり)",
1180
+ "model": "モデル: {model}",
1181
+ "failure": {
1182
+ "auth_missing": "資格情報が渡されていません",
1183
+ "auth_rejected": "資格情報が拒否されました",
1184
+ "access_unclear": "認証方法が不明です",
1185
+ "endpoint_unknown": "呼び出す対象が分かりませんでした",
1186
+ "unreachable": "環境に到達できません",
1187
+ "timeout": "タイムアウト",
1188
+ "server_error": "サービス側のエラー",
1189
+ "bad_request": "不正なリクエストとして拒否されました",
1190
+ "tooling_missing": "利用できるクライアントやブラウザーがありません",
1191
+ "other": "その他"
1192
+ }
1149
1193
  }
1150
1194
  },
1151
1195
  "agentConfig": {
@@ -688,6 +688,10 @@
688
688
  "env_test_not_provisionable": "Handler środowiska nie jest skonfigurowany",
689
689
  "env_test_no_vcs": "Dostawca Git nie jest połączony",
690
690
  "env_test_connection_failed": "Połączenie ze środowiskiem nie powiodło się",
691
+ "env_test_probe_unavailable": "Próbne przebiegi agenta są tu niedostępne",
692
+ "env_test_probe_model_unavailable": "Nie można uruchomić modelu próbnego przebiegu",
693
+ "env_test_already_running": "Autotest już trwa",
694
+ "env_test_over_budget": "Osiągnięto limit wydatków",
691
695
  "prompt_revision_conflict": "Prompt zmieniony przez kogoś innego",
692
696
  "pipeline_schedule_attached": "Harmonogram cykliczny używa tego potoku",
693
697
  "pipeline_schedule_requires_recurring": "Harmonogram cykliczny wymaga tego potoku",
@@ -737,6 +741,10 @@
737
741
  "env_test_no_vcs": "Autotest potrzebuje dostawcy Git, aby utworzyć i usunąć swoją jednorazową gałąź, ale ta przestrzeń robocza nie jest połączona z żadnym.",
738
742
  "env_test_connection_failed": "Obsługa środowiska dla tej usługi nie przeszła testu połączenia. Sprawdź jej punkt końcowy, poświadczenia i ustawienia projektu, a następnie ponownie przetestuj połączenie.",
739
743
  "env_test_connection_failed_detail": "Obsługa środowiska dla tej usługi nie przeszła testu połączenia: {detail}. Sprawdź jej punkt końcowy, poświadczenia i ustawienia projektu, a następnie ponownie przetestuj połączenie.",
744
+ "env_test_probe_unavailable": "Próbny przebieg agenta wymaga runnera kontenerów i podłączonego repozytorium. Brakuje tu jednego z nich, więc można uruchomić tylko autotest przydzielania środowiska.",
745
+ "env_test_probe_model_unavailable": "Próbny przebieg tej usługi wskazuje model, którego to wdrożenie nie może uruchomić: albo proxy LLM nie obsługuje jego dostawcy, albo potrzebna jest subskrypcja, której nikt nie podłączył. Zmień preset modelu dla sondy (lub model przypięty do ramki) albo podłącz subskrypcję. Autotest udostępniania nie potrzebuje modelu i nadal działa.",
746
+ "env_test_already_running": "Dla tej usługi już trwa autotest. Każdy z nich udostępnia własne środowisko jednorazowe, więc naraz działa tylko jeden. Poczekaj na zakończenie albo najpierw go zatrzymaj.",
747
+ "env_test_over_budget": "Próbny przebieg agenta to płatne wywołanie modelu, a ten obszar roboczy osiągnął limit wydatków. Zwiększ limit albo poczekaj na nowy okres rozliczeniowy. Autotest aprowizacji nic nie kosztuje i nadal działa.",
740
748
  "prompt_revision_conflict": "Inna zmiana tego promptu trafiła pierwsza. Wczytaj go ponownie i nanieś swoją zmianę na wierzch.",
741
749
  "pipeline_schedule_attached": "Harmonogram cykliczny nadal wskazuje ten potok, a każde uruchomienie odnajduje go po identyfikatorze. Najpierw odłącz lub usuń ten harmonogram, a dopiero potem usuń potok.",
742
750
  "pipeline_schedule_requires_recurring": "Harmonogram cykliczny nadal wskazuje ten potok, więc ograniczenie go do jednorazowego zepsułoby każde przyszłe uruchomienie. Najpierw odłącz ten harmonogram.",
@@ -1135,17 +1143,53 @@
1135
1143
  "hint": "Uruchamia cały cykl życia na jednorazowej gałęzi: utworzenie gałęzi, udostępnienie, usunięcie zasobów, usunięcie gałęzi.",
1136
1144
  "start": "Testowanie tworzenia środowiska",
1137
1145
  "stop": "Zatrzymaj",
1138
- "infraless": "Skonfiguruj powyżej typ udostępniania, aby przetestować tworzenie środowiska.",
1146
+ "infraless": "Skonfiguruj powyżej typ przydzielania środowiska, aby uruchomić którykolwiek z autotestów.",
1139
1147
  "running": "Testowanie: {stage}",
1140
1148
  "succeeded": "Test zaliczony: środowisko zostało utworzone i usunięte, a gałąź została skasowana.",
1141
1149
  "failed": "Test nie powiódł się",
1142
1150
  "stage": {
1143
1151
  "creating_branch": "tworzenie gałęzi",
1144
1152
  "provisioning": "udostępnianie środowiska",
1153
+ "probing": "sondowanie przez agenta",
1145
1154
  "tearing_down": "usuwanie środowiska",
1146
1155
  "deleting_branch": "usuwanie gałęzi",
1147
1156
  "done": "gotowe"
1148
1157
  }
1158
+ },
1159
+ "envProbe": {
1160
+ "title": "Przetestuj próbny przebieg agenta",
1161
+ "hint": "Tworzy jednorazowe środowisko, pozwala agentowi wykonać w nim kilka rzeczywistych operacji, a potem wszystko usuwa. Raportuje, czego próbował i czego nie zdołał ustalić.",
1162
+ "surfaceApi": "Ta usługa jest badana przez HTTP.",
1163
+ "surfaceUi": "Ten frontend jest badany w przeglądarce.",
1164
+ "start": "Przetestuj próbny przebieg agenta",
1165
+ "completed": "Próbny przebieg zakończony: środowisko usunięte, gałąź skasowana.",
1166
+ "failed": "Próbny przebieg się nie udał",
1167
+ "verdict": {
1168
+ "operable": "Agent potrafi obsłużyć tę usługę.",
1169
+ "partially_operable": "Agent potrafi obsłużyć tę usługę tylko częściowo.",
1170
+ "inoperable": "Agent nie zdołał obsłużyć tej usługi."
1171
+ },
1172
+ "counts": "Udanych operacji: {succeeded} z {attempted}; z uwierzytelnieniem: {authenticated}.",
1173
+ "missingContext": "Czego agentowi nie przekazano",
1174
+ "blockers": "Co zatrzymało próbny przebieg",
1175
+ "operations": "Podjęte operacje",
1176
+ "operationsOmitted": "Zgłoszone operacje pominięte przez limit: {count}.",
1177
+ "operationsUnreadable": "Zgłoszone operacje, których platforma nie mogła odczytać: {count}.",
1178
+ "progress": "(ukończono {completed} z {total} kroków)",
1179
+ "authenticated": "(uwierzytelniona)",
1180
+ "model": "Model: {model}",
1181
+ "failure": {
1182
+ "auth_missing": "Nie przekazano żadnych danych uwierzytelniających",
1183
+ "auth_rejected": "Dane uwierzytelniające odrzucone",
1184
+ "access_unclear": "Nie było jasne, jak się uwierzytelnić",
1185
+ "endpoint_unknown": "Nie udało się ustalić, co wywołać",
1186
+ "unreachable": "Środowisko nieosiągalne",
1187
+ "timeout": "Przekroczono limit czasu",
1188
+ "server_error": "Błąd usługi",
1189
+ "bad_request": "Żądanie odrzucone jako nieprawidłowe",
1190
+ "tooling_missing": "Brak dostępnego klienta lub przeglądarki",
1191
+ "other": "Inne"
1192
+ }
1149
1193
  }
1150
1194
  },
1151
1195
  "agentConfig": {