@nexusclawhq/cli 0.3.57 → 0.3.58
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/build-info.json +5 -5
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/agent-executable-assets/employee-eval-cases.types.d.ts +10 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/agent-executable-assets/employee-eval-cases.types.js +23 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/agent-executable-assets/employee-eval-cases.types.js.map +1 -1
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/employee-package/types.d.ts +2 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/index.d.ts +1 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/index.js +1 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/index.js.map +1 -1
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.d.ts +92 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.js +92 -7
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.js.map +1 -1
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/index.d.ts +184 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.d.ts +92 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.js +95 -10
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.js.map +1 -1
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/starter-scenario.d.ts +30 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/starter-scenario.js +103 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/starter-scenario.js.map +1 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/trial-contact.d.ts +9 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/trial-contact.js +33 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/trial-contact.js.map +1 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/package.json +4 -0
- package/dist/nexus-cli/src/cli.js +0 -0
- package/dist/nexus-cli/src/cli.test.js +5 -3
- package/dist/nexus-cli/src/cli.test.js.map +1 -1
- package/dist/nexus-cli/src/commands/ai/help.test.js +4 -4
- package/dist/nexus-cli/src/commands/employee/candidate.js +13 -1
- package/dist/nexus-cli/src/commands/employee/candidate.js.map +1 -1
- package/dist/nexus-cli/src/commands/employee/candidate.test.js +79 -0
- package/dist/nexus-cli/src/commands/employee/candidate.test.js.map +1 -1
- package/dist/nexus-cli/src/contracts/command-contract-coverage-baseline.json +5 -5
- package/dist/nexus-cli/src/contracts/command-contract.registry.js +12 -0
- package/dist/nexus-cli/src/contracts/command-contract.registry.js.map +1 -1
- package/dist/nexus-cli/src/contracts/command-inventory.test.js +4 -4
- package/dist/nexus-cli/src/contracts/command-policy.exporter.test.js +2 -2
- package/dist/nexus-cli/src/contracts/command-policy.registry.test.js +4 -4
- package/dist/nexus-cli/src/contracts/command-policy.validator.test.js +3 -3
- package/dist/nexus-cli/src/services/api-client.d.ts +12 -0
- package/dist/nexus-cli/src/services/api-client.js +9 -0
- package/dist/nexus-cli/src/services/api-client.js.map +1 -1
- package/dist/nexus-cli/src/services/workforce-bundle-archive.d.ts +1 -1
- package/dist/nexus-cli/src/services/workforce-bundle-remote.d.ts +1 -1
- package/dist/nexus-cli/src/services/workforce-remote-operations.d.ts +11 -0
- package/dist/nexus-cli/src/services/workforce-remote-operations.js +8 -0
- package/dist/nexus-cli/src/services/workforce-remote-operations.js.map +1 -1
- package/dist/nexus-cli/src/services/workforce-test-remote.d.ts +1 -1
- package/dist/nexus-cli/src/services/workforce-test-remote.js +1 -1
- package/dist/nexus-cli/src/services/workforce-test-remote.test.js +2 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -6736,6 +6736,9 @@ export declare const locales: {
|
|
|
6736
6736
|
tierLabel: string;
|
|
6737
6737
|
temperatureLabel: string;
|
|
6738
6738
|
maxTokensLabel: string;
|
|
6739
|
+
executionBudgetLabel: string;
|
|
6740
|
+
stepBudgetLabel: string;
|
|
6741
|
+
budgetHint: string;
|
|
6739
6742
|
responseFormatText: string;
|
|
6740
6743
|
tier1: string;
|
|
6741
6744
|
tier2: string;
|
|
@@ -7006,6 +7009,7 @@ export declare const locales: {
|
|
|
7006
7009
|
legacyMigrationTitle: string;
|
|
7007
7010
|
legacyMigrationDesc: string;
|
|
7008
7011
|
legacyTrustTitle: string;
|
|
7012
|
+
legacyTrustUnverified: string;
|
|
7009
7013
|
};
|
|
7010
7014
|
cognitiveForm: {
|
|
7011
7015
|
candidateOnlyTitle: string;
|
|
@@ -7081,16 +7085,44 @@ export declare const locales: {
|
|
|
7081
7085
|
a3LockedDesc: string;
|
|
7082
7086
|
a3LockedBadge: string;
|
|
7083
7087
|
contextPolicyReadonlyTitle: string;
|
|
7088
|
+
totalInputTokenBudgetLabel: string;
|
|
7089
|
+
minimumMemoryTrustLabel: string;
|
|
7090
|
+
maximumLegacyMemoryTokensLabel: string;
|
|
7091
|
+
contextConflictPolicyLabel: string;
|
|
7092
|
+
tokenizerPolicyVersionLabel: string;
|
|
7093
|
+
sourceBudgetsLabel: string;
|
|
7094
|
+
contextConflictPolicy: {
|
|
7095
|
+
live_state_wins_and_record: string;
|
|
7096
|
+
exclude_and_review: string;
|
|
7097
|
+
};
|
|
7098
|
+
sourceBudget: {
|
|
7099
|
+
worldState: string;
|
|
7100
|
+
publishedKnowledgeAndSop: string;
|
|
7101
|
+
controlledMemory: string;
|
|
7102
|
+
verifiedExemplars: string;
|
|
7103
|
+
};
|
|
7084
7104
|
memoryPolicyTitle: string;
|
|
7085
7105
|
memoryEnabledLabel: string;
|
|
7086
7106
|
activationModeLabel: string;
|
|
7107
|
+
activationMode: {
|
|
7108
|
+
human_review: string;
|
|
7109
|
+
narrow_policy_approval: string;
|
|
7110
|
+
};
|
|
7087
7111
|
allowedCategoriesLabel: string;
|
|
7112
|
+
memoryCategory: {
|
|
7113
|
+
customer_fact: string;
|
|
7114
|
+
customer_preference: string;
|
|
7115
|
+
commitment: string;
|
|
7116
|
+
risk_signal: string;
|
|
7117
|
+
episodic_summary: string;
|
|
7118
|
+
};
|
|
7088
7119
|
requireFinalEvaluationLabel: string;
|
|
7089
7120
|
defaultTtlDaysLabel: string;
|
|
7090
7121
|
maximumTtlDaysLabel: string;
|
|
7091
7122
|
allowLegacyReadThroughLabel: string;
|
|
7092
7123
|
restrictedSensitivityLabel: string;
|
|
7093
7124
|
restrictedSensitivityTip: string;
|
|
7125
|
+
restrictedSensitivityFixedValue: string;
|
|
7094
7126
|
};
|
|
7095
7127
|
builderSectionRail: string;
|
|
7096
7128
|
builderSelectTopic: string;
|
|
@@ -12754,6 +12786,29 @@ export declare const locales: {
|
|
|
12754
12786
|
};
|
|
12755
12787
|
trialConsoleUi: {
|
|
12756
12788
|
demoAccess: {
|
|
12789
|
+
customerTrial: {
|
|
12790
|
+
activation: {
|
|
12791
|
+
QUEUED: string;
|
|
12792
|
+
RETRYING: string;
|
|
12793
|
+
SENT: string;
|
|
12794
|
+
FAILED: string;
|
|
12795
|
+
ACTIVATED: string;
|
|
12796
|
+
UNKNOWN: string;
|
|
12797
|
+
};
|
|
12798
|
+
baselineNotice: string;
|
|
12799
|
+
result: string;
|
|
12800
|
+
pending: string;
|
|
12801
|
+
plan: string;
|
|
12802
|
+
seats: string;
|
|
12803
|
+
days: string;
|
|
12804
|
+
approvalNotice: string;
|
|
12805
|
+
activationNotice: string;
|
|
12806
|
+
expires: string;
|
|
12807
|
+
};
|
|
12808
|
+
tabs: {
|
|
12809
|
+
requests: string;
|
|
12810
|
+
resources: string;
|
|
12811
|
+
};
|
|
12757
12812
|
page: {
|
|
12758
12813
|
title: string;
|
|
12759
12814
|
subtitle: string;
|
|
@@ -12858,6 +12913,15 @@ export declare const locales: {
|
|
|
12858
12913
|
decisionReasonLabel: string;
|
|
12859
12914
|
};
|
|
12860
12915
|
options: {
|
|
12916
|
+
accessPublic: string;
|
|
12917
|
+
accessPrivate: string;
|
|
12918
|
+
accessInternal: string;
|
|
12919
|
+
routePublicDemo: string;
|
|
12920
|
+
routePrivateDemo: string;
|
|
12921
|
+
routeMaterialOnly: string;
|
|
12922
|
+
invitationMagicLink: string;
|
|
12923
|
+
invitationOtp: string;
|
|
12924
|
+
poolPrivatePresales: string;
|
|
12861
12925
|
poolPublicDemo: string;
|
|
12862
12926
|
poolInternal: string;
|
|
12863
12927
|
unknownPool: string;
|
|
@@ -21050,6 +21114,21 @@ export declare const locales: {
|
|
|
21050
21114
|
};
|
|
21051
21115
|
};
|
|
21052
21116
|
tryForFree: {
|
|
21117
|
+
usernameCheck: string;
|
|
21118
|
+
usernameAvailable: string;
|
|
21119
|
+
usernameCheckFailed: string;
|
|
21120
|
+
phoneRequired: string;
|
|
21121
|
+
phoneInvalid: string;
|
|
21122
|
+
phoneHint: string;
|
|
21123
|
+
phoneCountryLabel: string;
|
|
21124
|
+
phoneNationalPlaceholder: string;
|
|
21125
|
+
jobTitleRequired: string;
|
|
21126
|
+
usernameLabel: string;
|
|
21127
|
+
usernameHint: string;
|
|
21128
|
+
usernameInvalid: string;
|
|
21129
|
+
usernameTaken: string;
|
|
21130
|
+
usernameApprovalConflict: string;
|
|
21131
|
+
usernameApprovalInvalid: string;
|
|
21053
21132
|
submitSucceeded: string;
|
|
21054
21133
|
submitFailed: string;
|
|
21055
21134
|
subtitle: string;
|
|
@@ -21066,10 +21145,23 @@ export declare const locales: {
|
|
|
21066
21145
|
jobTitleLabel: string;
|
|
21067
21146
|
companyTypeLabel: string;
|
|
21068
21147
|
industryLabel: string;
|
|
21148
|
+
industryReadyGroup: string;
|
|
21149
|
+
industryGeneralGroup: string;
|
|
21069
21150
|
industryEnterprise: string;
|
|
21070
21151
|
industryEducation: string;
|
|
21071
21152
|
industryLifeSciences: string;
|
|
21072
21153
|
industryRetail: string;
|
|
21154
|
+
industryManufacturing: string;
|
|
21155
|
+
industryFinancialServices: string;
|
|
21156
|
+
industryHealthcare: string;
|
|
21157
|
+
industryTechnology: string;
|
|
21158
|
+
industryProfessionalServices: string;
|
|
21159
|
+
industryLogistics: string;
|
|
21160
|
+
industryRealEstateConstruction: string;
|
|
21161
|
+
industryEnergy: string;
|
|
21162
|
+
industryGovernmentPublicSector: string;
|
|
21163
|
+
industryMediaEntertainment: string;
|
|
21164
|
+
industryOtherOrUnsure: string;
|
|
21073
21165
|
scenarioLabel: string;
|
|
21074
21166
|
scenarioPlaceholder: string;
|
|
21075
21167
|
submit: string;
|
|
@@ -27810,6 +27902,9 @@ export declare const locales: {
|
|
|
27810
27902
|
tierLabel: string;
|
|
27811
27903
|
temperatureLabel: string;
|
|
27812
27904
|
maxTokensLabel: string;
|
|
27905
|
+
executionBudgetLabel: string;
|
|
27906
|
+
stepBudgetLabel: string;
|
|
27907
|
+
budgetHint: string;
|
|
27813
27908
|
responseFormatText: string;
|
|
27814
27909
|
tier1: string;
|
|
27815
27910
|
tier2: string;
|
|
@@ -28080,6 +28175,7 @@ export declare const locales: {
|
|
|
28080
28175
|
legacyMigrationTitle: string;
|
|
28081
28176
|
legacyMigrationDesc: string;
|
|
28082
28177
|
legacyTrustTitle: string;
|
|
28178
|
+
legacyTrustUnverified: string;
|
|
28083
28179
|
};
|
|
28084
28180
|
cognitiveForm: {
|
|
28085
28181
|
candidateOnlyTitle: string;
|
|
@@ -28155,16 +28251,44 @@ export declare const locales: {
|
|
|
28155
28251
|
a3LockedDesc: string;
|
|
28156
28252
|
a3LockedBadge: string;
|
|
28157
28253
|
contextPolicyReadonlyTitle: string;
|
|
28254
|
+
totalInputTokenBudgetLabel: string;
|
|
28255
|
+
minimumMemoryTrustLabel: string;
|
|
28256
|
+
maximumLegacyMemoryTokensLabel: string;
|
|
28257
|
+
contextConflictPolicyLabel: string;
|
|
28258
|
+
tokenizerPolicyVersionLabel: string;
|
|
28259
|
+
sourceBudgetsLabel: string;
|
|
28260
|
+
contextConflictPolicy: {
|
|
28261
|
+
live_state_wins_and_record: string;
|
|
28262
|
+
exclude_and_review: string;
|
|
28263
|
+
};
|
|
28264
|
+
sourceBudget: {
|
|
28265
|
+
worldState: string;
|
|
28266
|
+
publishedKnowledgeAndSop: string;
|
|
28267
|
+
controlledMemory: string;
|
|
28268
|
+
verifiedExemplars: string;
|
|
28269
|
+
};
|
|
28158
28270
|
memoryPolicyTitle: string;
|
|
28159
28271
|
memoryEnabledLabel: string;
|
|
28160
28272
|
activationModeLabel: string;
|
|
28273
|
+
activationMode: {
|
|
28274
|
+
human_review: string;
|
|
28275
|
+
narrow_policy_approval: string;
|
|
28276
|
+
};
|
|
28161
28277
|
allowedCategoriesLabel: string;
|
|
28278
|
+
memoryCategory: {
|
|
28279
|
+
customer_fact: string;
|
|
28280
|
+
customer_preference: string;
|
|
28281
|
+
commitment: string;
|
|
28282
|
+
risk_signal: string;
|
|
28283
|
+
episodic_summary: string;
|
|
28284
|
+
};
|
|
28162
28285
|
requireFinalEvaluationLabel: string;
|
|
28163
28286
|
defaultTtlDaysLabel: string;
|
|
28164
28287
|
maximumTtlDaysLabel: string;
|
|
28165
28288
|
allowLegacyReadThroughLabel: string;
|
|
28166
28289
|
restrictedSensitivityLabel: string;
|
|
28167
28290
|
restrictedSensitivityTip: string;
|
|
28291
|
+
restrictedSensitivityFixedValue: string;
|
|
28168
28292
|
};
|
|
28169
28293
|
builderSectionRail: string;
|
|
28170
28294
|
builderSelectTopic: string;
|
|
@@ -33828,6 +33952,29 @@ export declare const locales: {
|
|
|
33828
33952
|
};
|
|
33829
33953
|
trialConsoleUi: {
|
|
33830
33954
|
demoAccess: {
|
|
33955
|
+
customerTrial: {
|
|
33956
|
+
activation: {
|
|
33957
|
+
QUEUED: string;
|
|
33958
|
+
RETRYING: string;
|
|
33959
|
+
SENT: string;
|
|
33960
|
+
FAILED: string;
|
|
33961
|
+
ACTIVATED: string;
|
|
33962
|
+
UNKNOWN: string;
|
|
33963
|
+
};
|
|
33964
|
+
baselineNotice: string;
|
|
33965
|
+
result: string;
|
|
33966
|
+
pending: string;
|
|
33967
|
+
plan: string;
|
|
33968
|
+
seats: string;
|
|
33969
|
+
days: string;
|
|
33970
|
+
approvalNotice: string;
|
|
33971
|
+
activationNotice: string;
|
|
33972
|
+
expires: string;
|
|
33973
|
+
};
|
|
33974
|
+
tabs: {
|
|
33975
|
+
requests: string;
|
|
33976
|
+
resources: string;
|
|
33977
|
+
};
|
|
33831
33978
|
page: {
|
|
33832
33979
|
title: string;
|
|
33833
33980
|
subtitle: string;
|
|
@@ -33932,6 +34079,15 @@ export declare const locales: {
|
|
|
33932
34079
|
decisionReasonLabel: string;
|
|
33933
34080
|
};
|
|
33934
34081
|
options: {
|
|
34082
|
+
accessPublic: string;
|
|
34083
|
+
accessPrivate: string;
|
|
34084
|
+
accessInternal: string;
|
|
34085
|
+
routePublicDemo: string;
|
|
34086
|
+
routePrivateDemo: string;
|
|
34087
|
+
routeMaterialOnly: string;
|
|
34088
|
+
invitationMagicLink: string;
|
|
34089
|
+
invitationOtp: string;
|
|
34090
|
+
poolPrivatePresales: string;
|
|
33935
34091
|
poolPublicDemo: string;
|
|
33936
34092
|
poolInternal: string;
|
|
33937
34093
|
unknownPool: string;
|
|
@@ -42119,6 +42275,21 @@ export declare const locales: {
|
|
|
42119
42275
|
};
|
|
42120
42276
|
};
|
|
42121
42277
|
tryForFree: {
|
|
42278
|
+
usernameCheck: string;
|
|
42279
|
+
usernameAvailable: string;
|
|
42280
|
+
usernameCheckFailed: string;
|
|
42281
|
+
phoneRequired: string;
|
|
42282
|
+
phoneInvalid: string;
|
|
42283
|
+
phoneHint: string;
|
|
42284
|
+
phoneCountryLabel: string;
|
|
42285
|
+
phoneNationalPlaceholder: string;
|
|
42286
|
+
jobTitleRequired: string;
|
|
42287
|
+
usernameLabel: string;
|
|
42288
|
+
usernameHint: string;
|
|
42289
|
+
usernameInvalid: string;
|
|
42290
|
+
usernameTaken: string;
|
|
42291
|
+
usernameApprovalConflict: string;
|
|
42292
|
+
usernameApprovalInvalid: string;
|
|
42122
42293
|
submitSucceeded: string;
|
|
42123
42294
|
submitFailed: string;
|
|
42124
42295
|
subtitle: string;
|
|
@@ -42135,10 +42306,23 @@ export declare const locales: {
|
|
|
42135
42306
|
jobTitleLabel: string;
|
|
42136
42307
|
companyTypeLabel: string;
|
|
42137
42308
|
industryLabel: string;
|
|
42309
|
+
industryReadyGroup: string;
|
|
42310
|
+
industryGeneralGroup: string;
|
|
42138
42311
|
industryEnterprise: string;
|
|
42139
42312
|
industryEducation: string;
|
|
42140
42313
|
industryLifeSciences: string;
|
|
42141
42314
|
industryRetail: string;
|
|
42315
|
+
industryManufacturing: string;
|
|
42316
|
+
industryFinancialServices: string;
|
|
42317
|
+
industryHealthcare: string;
|
|
42318
|
+
industryTechnology: string;
|
|
42319
|
+
industryProfessionalServices: string;
|
|
42320
|
+
industryLogistics: string;
|
|
42321
|
+
industryRealEstateConstruction: string;
|
|
42322
|
+
industryEnergy: string;
|
|
42323
|
+
industryGovernmentPublicSector: string;
|
|
42324
|
+
industryMediaEntertainment: string;
|
|
42325
|
+
industryOtherOrUnsure: string;
|
|
42142
42326
|
scenarioLabel: string;
|
|
42143
42327
|
scenarioPlaceholder: string;
|
|
42144
42328
|
submit: string;
|
|
@@ -6732,6 +6732,9 @@ declare const _default: {
|
|
|
6732
6732
|
tierLabel: string;
|
|
6733
6733
|
temperatureLabel: string;
|
|
6734
6734
|
maxTokensLabel: string;
|
|
6735
|
+
executionBudgetLabel: string;
|
|
6736
|
+
stepBudgetLabel: string;
|
|
6737
|
+
budgetHint: string;
|
|
6735
6738
|
responseFormatText: string;
|
|
6736
6739
|
tier1: string;
|
|
6737
6740
|
tier2: string;
|
|
@@ -7002,6 +7005,7 @@ declare const _default: {
|
|
|
7002
7005
|
legacyMigrationTitle: string;
|
|
7003
7006
|
legacyMigrationDesc: string;
|
|
7004
7007
|
legacyTrustTitle: string;
|
|
7008
|
+
legacyTrustUnverified: string;
|
|
7005
7009
|
};
|
|
7006
7010
|
cognitiveForm: {
|
|
7007
7011
|
candidateOnlyTitle: string;
|
|
@@ -7077,16 +7081,44 @@ declare const _default: {
|
|
|
7077
7081
|
a3LockedDesc: string;
|
|
7078
7082
|
a3LockedBadge: string;
|
|
7079
7083
|
contextPolicyReadonlyTitle: string;
|
|
7084
|
+
totalInputTokenBudgetLabel: string;
|
|
7085
|
+
minimumMemoryTrustLabel: string;
|
|
7086
|
+
maximumLegacyMemoryTokensLabel: string;
|
|
7087
|
+
contextConflictPolicyLabel: string;
|
|
7088
|
+
tokenizerPolicyVersionLabel: string;
|
|
7089
|
+
sourceBudgetsLabel: string;
|
|
7090
|
+
contextConflictPolicy: {
|
|
7091
|
+
live_state_wins_and_record: string;
|
|
7092
|
+
exclude_and_review: string;
|
|
7093
|
+
};
|
|
7094
|
+
sourceBudget: {
|
|
7095
|
+
worldState: string;
|
|
7096
|
+
publishedKnowledgeAndSop: string;
|
|
7097
|
+
controlledMemory: string;
|
|
7098
|
+
verifiedExemplars: string;
|
|
7099
|
+
};
|
|
7080
7100
|
memoryPolicyTitle: string;
|
|
7081
7101
|
memoryEnabledLabel: string;
|
|
7082
7102
|
activationModeLabel: string;
|
|
7103
|
+
activationMode: {
|
|
7104
|
+
human_review: string;
|
|
7105
|
+
narrow_policy_approval: string;
|
|
7106
|
+
};
|
|
7083
7107
|
allowedCategoriesLabel: string;
|
|
7108
|
+
memoryCategory: {
|
|
7109
|
+
customer_fact: string;
|
|
7110
|
+
customer_preference: string;
|
|
7111
|
+
commitment: string;
|
|
7112
|
+
risk_signal: string;
|
|
7113
|
+
episodic_summary: string;
|
|
7114
|
+
};
|
|
7084
7115
|
requireFinalEvaluationLabel: string;
|
|
7085
7116
|
defaultTtlDaysLabel: string;
|
|
7086
7117
|
maximumTtlDaysLabel: string;
|
|
7087
7118
|
allowLegacyReadThroughLabel: string;
|
|
7088
7119
|
restrictedSensitivityLabel: string;
|
|
7089
7120
|
restrictedSensitivityTip: string;
|
|
7121
|
+
restrictedSensitivityFixedValue: string;
|
|
7090
7122
|
};
|
|
7091
7123
|
builderSectionRail: string;
|
|
7092
7124
|
builderSelectTopic: string;
|
|
@@ -12750,6 +12782,29 @@ declare const _default: {
|
|
|
12750
12782
|
};
|
|
12751
12783
|
trialConsoleUi: {
|
|
12752
12784
|
demoAccess: {
|
|
12785
|
+
customerTrial: {
|
|
12786
|
+
activation: {
|
|
12787
|
+
QUEUED: string;
|
|
12788
|
+
RETRYING: string;
|
|
12789
|
+
SENT: string;
|
|
12790
|
+
FAILED: string;
|
|
12791
|
+
ACTIVATED: string;
|
|
12792
|
+
UNKNOWN: string;
|
|
12793
|
+
};
|
|
12794
|
+
baselineNotice: string;
|
|
12795
|
+
result: string;
|
|
12796
|
+
pending: string;
|
|
12797
|
+
plan: string;
|
|
12798
|
+
seats: string;
|
|
12799
|
+
days: string;
|
|
12800
|
+
approvalNotice: string;
|
|
12801
|
+
activationNotice: string;
|
|
12802
|
+
expires: string;
|
|
12803
|
+
};
|
|
12804
|
+
tabs: {
|
|
12805
|
+
requests: string;
|
|
12806
|
+
resources: string;
|
|
12807
|
+
};
|
|
12753
12808
|
page: {
|
|
12754
12809
|
title: string;
|
|
12755
12810
|
subtitle: string;
|
|
@@ -12854,6 +12909,15 @@ declare const _default: {
|
|
|
12854
12909
|
decisionReasonLabel: string;
|
|
12855
12910
|
};
|
|
12856
12911
|
options: {
|
|
12912
|
+
accessPublic: string;
|
|
12913
|
+
accessPrivate: string;
|
|
12914
|
+
accessInternal: string;
|
|
12915
|
+
routePublicDemo: string;
|
|
12916
|
+
routePrivateDemo: string;
|
|
12917
|
+
routeMaterialOnly: string;
|
|
12918
|
+
invitationMagicLink: string;
|
|
12919
|
+
invitationOtp: string;
|
|
12920
|
+
poolPrivatePresales: string;
|
|
12857
12921
|
poolPublicDemo: string;
|
|
12858
12922
|
poolInternal: string;
|
|
12859
12923
|
unknownPool: string;
|
|
@@ -21046,6 +21110,21 @@ declare const _default: {
|
|
|
21046
21110
|
};
|
|
21047
21111
|
};
|
|
21048
21112
|
tryForFree: {
|
|
21113
|
+
usernameCheck: string;
|
|
21114
|
+
usernameAvailable: string;
|
|
21115
|
+
usernameCheckFailed: string;
|
|
21116
|
+
phoneRequired: string;
|
|
21117
|
+
phoneInvalid: string;
|
|
21118
|
+
phoneHint: string;
|
|
21119
|
+
phoneCountryLabel: string;
|
|
21120
|
+
phoneNationalPlaceholder: string;
|
|
21121
|
+
jobTitleRequired: string;
|
|
21122
|
+
usernameLabel: string;
|
|
21123
|
+
usernameHint: string;
|
|
21124
|
+
usernameInvalid: string;
|
|
21125
|
+
usernameTaken: string;
|
|
21126
|
+
usernameApprovalConflict: string;
|
|
21127
|
+
usernameApprovalInvalid: string;
|
|
21049
21128
|
submitSucceeded: string;
|
|
21050
21129
|
submitFailed: string;
|
|
21051
21130
|
subtitle: string;
|
|
@@ -21062,10 +21141,23 @@ declare const _default: {
|
|
|
21062
21141
|
jobTitleLabel: string;
|
|
21063
21142
|
companyTypeLabel: string;
|
|
21064
21143
|
industryLabel: string;
|
|
21144
|
+
industryReadyGroup: string;
|
|
21145
|
+
industryGeneralGroup: string;
|
|
21065
21146
|
industryEnterprise: string;
|
|
21066
21147
|
industryEducation: string;
|
|
21067
21148
|
industryLifeSciences: string;
|
|
21068
21149
|
industryRetail: string;
|
|
21150
|
+
industryManufacturing: string;
|
|
21151
|
+
industryFinancialServices: string;
|
|
21152
|
+
industryHealthcare: string;
|
|
21153
|
+
industryTechnology: string;
|
|
21154
|
+
industryProfessionalServices: string;
|
|
21155
|
+
industryLogistics: string;
|
|
21156
|
+
industryRealEstateConstruction: string;
|
|
21157
|
+
industryEnergy: string;
|
|
21158
|
+
industryGovernmentPublicSector: string;
|
|
21159
|
+
industryMediaEntertainment: string;
|
|
21160
|
+
industryOtherOrUnsure: string;
|
|
21069
21161
|
scenarioLabel: string;
|
|
21070
21162
|
scenarioPlaceholder: string;
|
|
21071
21163
|
submit: string;
|
|
@@ -1423,11 +1423,11 @@ const messages = {
|
|
|
1423
1423
|
aiCoreLearning: "自我进化",
|
|
1424
1424
|
aiCapabilityMoeTitle: "MoE",
|
|
1425
1425
|
aiCapabilityMoeDescription: "智能选择最佳模型",
|
|
1426
|
-
aiCapabilityHeadlessTitle: "
|
|
1426
|
+
aiCapabilityHeadlessTitle: "Headless",
|
|
1427
1427
|
aiCapabilityHeadlessDescription: "跨渠道自主执行",
|
|
1428
|
-
aiCapabilityRuntimeTitle: "
|
|
1428
|
+
aiCapabilityRuntimeTitle: "Runtime",
|
|
1429
1429
|
aiCapabilityRuntimeDescription: "稳定运行每项任务",
|
|
1430
|
-
aiCapabilityPermissionTitle: "
|
|
1430
|
+
aiCapabilityPermissionTitle: "Guardrails",
|
|
1431
1431
|
aiCapabilityPermissionDescription: "权限、审批与审计",
|
|
1432
1432
|
aiCapabilityMcpTitle: "MCP",
|
|
1433
1433
|
aiCapabilityMcpDescription: "连接企业工具与数据"
|
|
@@ -6746,7 +6746,10 @@ const messages = {
|
|
|
6746
6746
|
providerPlaceholder: "服务商标识",
|
|
6747
6747
|
tierLabel: "模型层级",
|
|
6748
6748
|
temperatureLabel: "温度 ({value})",
|
|
6749
|
-
maxTokensLabel: "
|
|
6749
|
+
maxTokensLabel: "单次输出 Token 上限",
|
|
6750
|
+
executionBudgetLabel: "执行总预算(输入 + 输出 tokens)",
|
|
6751
|
+
stepBudgetLabel: "单步预算(输入 + 输出 tokens)",
|
|
6752
|
+
budgetHint: "资源预算保存后用于后续执行,不发布员工行为。单步有效值不超过执行总预算;Smart Cap 和模型供应商限制仍生效。",
|
|
6750
6753
|
responseFormatText: "文本",
|
|
6751
6754
|
tier1: "Tier 1 (经济)",
|
|
6752
6755
|
tier2: "Tier 2 (标准)",
|
|
@@ -7017,6 +7020,7 @@ const messages = {
|
|
|
7017
7020
|
legacyMigrationTitle: "旧记忆迁移状态",
|
|
7018
7021
|
legacyMigrationDesc: "LegacyMigrationStatusV1 由后端迁移投影提供,不在前端推断。",
|
|
7019
7022
|
legacyTrustTitle: "旧数据可信度",
|
|
7023
|
+
legacyTrustUnverified: "未验证(仅作为迁移期兼容数据)",
|
|
7020
7024
|
},
|
|
7021
7025
|
cognitiveForm: {
|
|
7022
7026
|
candidateOnlyTitle: "仅更新候选版本",
|
|
@@ -7092,16 +7096,44 @@ const messages = {
|
|
|
7092
7096
|
a3LockedDesc: "A3_bounded_execute 属于 P0+,须经 Phase 12 发布门禁与候选评测通过后才可开放;当前为只读。",
|
|
7093
7097
|
a3LockedBadge: "P0+ 门禁锁定",
|
|
7094
7098
|
contextPolicyReadonlyTitle: "上下文策略(只读)",
|
|
7099
|
+
totalInputTokenBudgetLabel: "输入 Token 总预算",
|
|
7100
|
+
minimumMemoryTrustLabel: "最低记忆可信度",
|
|
7101
|
+
maximumLegacyMemoryTokensLabel: "旧记忆 Token 上限",
|
|
7102
|
+
contextConflictPolicyLabel: "上下文冲突策略",
|
|
7103
|
+
tokenizerPolicyVersionLabel: "分词策略版本",
|
|
7104
|
+
sourceBudgetsLabel: "来源 Token 预算",
|
|
7105
|
+
contextConflictPolicy: {
|
|
7106
|
+
live_state_wins_and_record: "实时状态优先并记录冲突",
|
|
7107
|
+
exclude_and_review: "排除冲突内容并转人工复核",
|
|
7108
|
+
},
|
|
7109
|
+
sourceBudget: {
|
|
7110
|
+
worldState: "实时业务状态",
|
|
7111
|
+
publishedKnowledgeAndSop: "已发布知识与 SOP",
|
|
7112
|
+
controlledMemory: "受控记忆",
|
|
7113
|
+
verifiedExemplars: "已验证范例",
|
|
7114
|
+
},
|
|
7095
7115
|
memoryPolicyTitle: "记忆策略",
|
|
7096
7116
|
memoryEnabledLabel: "启用受控记忆",
|
|
7097
7117
|
activationModeLabel: "激活模式",
|
|
7118
|
+
activationMode: {
|
|
7119
|
+
human_review: "人工审核后激活",
|
|
7120
|
+
narrow_policy_approval: "符合严格策略时自动批准",
|
|
7121
|
+
},
|
|
7098
7122
|
allowedCategoriesLabel: "允许的记忆类型",
|
|
7123
|
+
memoryCategory: {
|
|
7124
|
+
customer_fact: "客户事实",
|
|
7125
|
+
customer_preference: "客户偏好",
|
|
7126
|
+
commitment: "承诺事项",
|
|
7127
|
+
risk_signal: "风险信号",
|
|
7128
|
+
episodic_summary: "事件摘要",
|
|
7129
|
+
},
|
|
7099
7130
|
requireFinalEvaluationLabel: "需最终评价",
|
|
7100
7131
|
defaultTtlDaysLabel: "默认 TTL(天)",
|
|
7101
7132
|
maximumTtlDaysLabel: "最大 TTL(天)",
|
|
7102
7133
|
allowLegacyReadThroughLabel: "允许旧数据读透",
|
|
7103
7134
|
restrictedSensitivityLabel: "受限敏感度强制人工",
|
|
7104
|
-
restrictedSensitivityTip: "
|
|
7135
|
+
restrictedSensitivityTip: "受限敏感度的记忆必须由人工审核,该规则不可编辑。",
|
|
7136
|
+
restrictedSensitivityFixedValue: "已固定为需人工审核",
|
|
7105
7137
|
},
|
|
7106
7138
|
builderSectionRail: "AI 员工内部导航",
|
|
7107
7139
|
builderSelectTopic: "选择一个主题",
|
|
@@ -12776,9 +12808,25 @@ const messages = {
|
|
|
12776
12808
|
},
|
|
12777
12809
|
trialConsoleUi: {
|
|
12778
12810
|
demoAccess: {
|
|
12811
|
+
customerTrial: {
|
|
12812
|
+
activation: { QUEUED: "激活邮件待发送", RETRYING: "邮件发送重试中", SENT: "激活邮件已发送", FAILED: "激活邮件发送失败", ACTIVATED: "客户账号已激活", UNKNOWN: "激活状态待核实" },
|
|
12813
|
+
baselineNotice: "工作空间已创建,基础配置由后台初始化。",
|
|
12814
|
+
result: "试用开通",
|
|
12815
|
+
pending: "待审批开通",
|
|
12816
|
+
plan: "试用套餐",
|
|
12817
|
+
seats: "试用席位",
|
|
12818
|
+
days: "试用天数",
|
|
12819
|
+
approvalNotice: "通过后为该客户创建独立工作空间和管理员账号,按套餐配置额度,并发送账号激活邮件。",
|
|
12820
|
+
activationNotice: "已提交激活邮件发送请求;客户通过邮件设置密码。发送结果请查看账号通知记录。",
|
|
12821
|
+
expires: "到期:{date}",
|
|
12822
|
+
},
|
|
12823
|
+
tabs: {
|
|
12824
|
+
requests: "申请处理",
|
|
12825
|
+
resources: "环境资源",
|
|
12826
|
+
},
|
|
12779
12827
|
page: {
|
|
12780
12828
|
title: "演示访问",
|
|
12781
|
-
subtitle: "
|
|
12829
|
+
subtitle: "审批客户试用申请并开通独立工作空间;演示环境池在环境资源页单独管理。",
|
|
12782
12830
|
refresh: "刷新",
|
|
12783
12831
|
loadError: "Demo Access 数据加载失败",
|
|
12784
12832
|
},
|
|
@@ -12789,9 +12837,9 @@ const messages = {
|
|
|
12789
12837
|
invitations: "邀请",
|
|
12790
12838
|
},
|
|
12791
12839
|
queue: {
|
|
12792
|
-
title: "
|
|
12793
|
-
description: "
|
|
12794
|
-
empty: "
|
|
12840
|
+
title: "客户试用申请",
|
|
12841
|
+
description: "审批通过后创建独立客户工作空间、试用订阅和管理员账号,并发送激活邮件。",
|
|
12842
|
+
empty: "暂无待处理试用申请",
|
|
12795
12843
|
},
|
|
12796
12844
|
poolCard: {
|
|
12797
12845
|
title: "环境池",
|
|
@@ -12870,7 +12918,7 @@ const messages = {
|
|
|
12870
12918
|
nextExecution: "下次执行",
|
|
12871
12919
|
},
|
|
12872
12920
|
reviewModal: {
|
|
12873
|
-
title: "
|
|
12921
|
+
title: "审批客户试用",
|
|
12874
12922
|
decisionLabel: "审批结论",
|
|
12875
12923
|
decisionApprove: "通过",
|
|
12876
12924
|
decisionReject: "拒绝",
|
|
@@ -12880,6 +12928,15 @@ const messages = {
|
|
|
12880
12928
|
decisionReasonLabel: "审批备注",
|
|
12881
12929
|
},
|
|
12882
12930
|
options: {
|
|
12931
|
+
accessPublic: "公开",
|
|
12932
|
+
accessPrivate: "私有",
|
|
12933
|
+
accessInternal: "内部",
|
|
12934
|
+
routePublicDemo: "公开 Demo",
|
|
12935
|
+
routePrivateDemo: "私有 Demo",
|
|
12936
|
+
routeMaterialOnly: "仅资料",
|
|
12937
|
+
invitationMagicLink: "魔法链接",
|
|
12938
|
+
invitationOtp: "一次性验证码",
|
|
12939
|
+
poolPrivatePresales: "私有售前池",
|
|
12883
12940
|
poolPublicDemo: "公开 Demo 池",
|
|
12884
12941
|
poolInternal: "内部池",
|
|
12885
12942
|
unknownPool: "未知环境池",
|
|
@@ -21071,6 +21128,21 @@ const messages = {
|
|
|
21071
21128
|
},
|
|
21072
21129
|
},
|
|
21073
21130
|
tryForFree: {
|
|
21131
|
+
usernameCheck: "检查可用性",
|
|
21132
|
+
usernameAvailable: "该用户名当前可用。此检查不预留用户名,提交和开通时仍会再次校验。",
|
|
21133
|
+
usernameCheckFailed: "暂时无法检查用户名,请稍后重试。",
|
|
21134
|
+
phoneRequired: "请输入手机号",
|
|
21135
|
+
phoneInvalid: "请输入所选国家或地区的有效手机号,无需填写国际区号,不支持分机号",
|
|
21136
|
+
phoneHint: "请选择国家或地区,再输入手机号,无需手动输入国际区号。",
|
|
21137
|
+
phoneCountryLabel: "国家/地区区号",
|
|
21138
|
+
phoneNationalPlaceholder: "手机号",
|
|
21139
|
+
jobTitleRequired: "请输入职务(1–120 个字符,不能仅为空格)",
|
|
21140
|
+
usernameLabel: "登录用户名",
|
|
21141
|
+
usernameHint: "默认使用工作邮箱,可自行修改。须为邮箱格式且未被占用;收信仍使用工作邮箱。",
|
|
21142
|
+
usernameInvalid: "请输入邮箱格式的用户名(3–80 位,仅含字母、数字、点、下划线、@ 和连字符,以字母或数字开头)",
|
|
21143
|
+
usernameTaken: "该登录用户名已被占用,请自行填写其他用户名。工作邮箱无需更换。",
|
|
21144
|
+
usernameApprovalConflict: "申请用户名已被占用,请联系客户重新提交并选择其他用户名;未开通工作空间。",
|
|
21145
|
+
usernameApprovalInvalid: "申请缺少有效的客户确认用户名,请联系客户重新提交申请;未开通工作空间。",
|
|
21074
21146
|
submitSucceeded: "试用申请已提交",
|
|
21075
21147
|
submitFailed: "试用申请提交失败,请稍后重试",
|
|
21076
21148
|
subtitle: "提交试用申请后,我们会安排产品顾问联系并发放合适的演示环境。",
|
|
@@ -21087,10 +21159,23 @@ const messages = {
|
|
|
21087
21159
|
jobTitleLabel: "职务",
|
|
21088
21160
|
companyTypeLabel: "团队规模",
|
|
21089
21161
|
industryLabel: "关注行业",
|
|
21162
|
+
industryReadyGroup: "已有行业模板",
|
|
21163
|
+
industryGeneralGroup: "其他行业(将由顾问人工匹配)",
|
|
21090
21164
|
industryEnterprise: "企业服务",
|
|
21091
21165
|
industryEducation: "教育",
|
|
21092
21166
|
industryLifeSciences: "生命科学",
|
|
21093
21167
|
industryRetail: "零售 / 渠道 / 交付",
|
|
21168
|
+
industryManufacturing: "制造业",
|
|
21169
|
+
industryFinancialServices: "金融 / 保险",
|
|
21170
|
+
industryHealthcare: "医疗健康",
|
|
21171
|
+
industryTechnology: "互联网 / 软件",
|
|
21172
|
+
industryProfessionalServices: "专业服务",
|
|
21173
|
+
industryLogistics: "物流供应链",
|
|
21174
|
+
industryRealEstateConstruction: "地产 / 建筑",
|
|
21175
|
+
industryEnergy: "能源",
|
|
21176
|
+
industryGovernmentPublicSector: "政府 / 公共事业",
|
|
21177
|
+
industryMediaEntertainment: "媒体文娱",
|
|
21178
|
+
industryOtherOrUnsure: "其他 / 暂不确定",
|
|
21094
21179
|
scenarioLabel: "想优先体验什么",
|
|
21095
21180
|
scenarioPlaceholder: "例如销售线索管理、客户服务、AI 自动化、报表仪表盘、权限与审批等",
|
|
21096
21181
|
submit: "提交试用申请",
|