Add files via upload

This commit is contained in:
公明
2026-08-15 01:33:33 +08:00
committed by GitHub
parent 20c9e871af
commit e691c5d9c6
15 changed files with 716 additions and 19 deletions
+18
View File
@@ -699,6 +699,15 @@
"einoStreamErrorTitle": "⚠️ Eino stream interrupted ({{agent}})",
"einoStreamErrorMessage": "Streaming read failed; the system will retry or terminate according to policy.",
"einoRunRetryTitle": "🔁 Transient error retry",
"einoModelRetryTitle": "🔁 Model call retry",
"einoModelFailoverTitle": "🔀 Switching fallback model",
"einoUsageSummaryTitle": "Token usage summary",
"einoUsageModelCalls": "Model calls",
"einoUsagePromptTokens": "Prompt tokens",
"einoUsageCompletionTokens": "Completion tokens",
"einoUsageTotalTokens": "Total tokens",
"einoUsageCachedTokens": "Cached tokens",
"einoUsageReasoningTokens": "Reasoning tokens",
"einoEmptyResponseContinueTitle": "🔁 Auto resume (no assistant text)",
"einoEmptyResponseContinueMessage": "Session ended without captured assistant text; resuming from trace…",
"einoRunRetryPlan": "Retry progress: attempt {{attempt}}/{{maxAttempts}}, waiting {{backoffSec}}s",
@@ -2821,6 +2830,15 @@
"multiAgentRobotMode": "Default conversation mode for bots",
"multiAgentRobotModeHint": "Execution mode for WeCom / DingTalk / Lark bot messages. Deep / Plan-Execute / Supervisor require multi-agent to be enabled.",
"agentAdvanced": "Advanced settings",
"einoModelRetryMaxRetries": "Eino native model retry limit",
"einoModelRetryMaxRetriesHint": "ChatModelAgent native ModelRetry attempts. 0 uses the backend default of 4. Covers 429/5xx/network jitter and empty model output.",
"einoModelRetryMaxBackoffSec": "Eino native model max backoff seconds",
"einoModelRetryMaxBackoffSecHint": "Upper bound for exponential backoff in native model retry. 0 uses the backend default of 30 seconds.",
"einoModelFailoverChannels": "Eino model failover channels",
"einoModelFailoverChannelsPlaceholder": "backup-openai\nbackup-claude",
"einoModelFailoverChannelsHint": "After the primary channel exhausts native retries, switch through these ai.channels IDs in order. One per line; commas are also accepted.",
"einoModelFailoverMaxRetries": "Eino model failover switch limit",
"einoModelFailoverMaxRetriesHint": "0 tries all configured fallback channels. A positive value limits how many fallback channels may be tried.",
"userLedgerMaxRunes": "User input ledger total character limit",
"userLedgerMaxRunesHint": "Total limit for the original user input ledger injected after compaction; 0 uses the backend default. DB-stored original messages are not truncated.",
"userLedgerEntryMaxRunes": "Per-message user input character limit",
+18
View File
@@ -687,6 +687,15 @@
"einoStreamErrorTitle": "⚠️ Eino 流式中断({{agent}}",
"einoStreamErrorMessage": "流式读取异常,系统将按策略重试或结束。",
"einoRunRetryTitle": "🔁 临时错误重试",
"einoModelRetryTitle": "🔁 模型调用重试",
"einoModelFailoverTitle": "🔀 切换备用模型",
"einoUsageSummaryTitle": "Token 用量汇总",
"einoUsageModelCalls": "模型调用",
"einoUsagePromptTokens": "输入 tokens",
"einoUsageCompletionTokens": "输出 tokens",
"einoUsageTotalTokens": "总 tokens",
"einoUsageCachedTokens": "缓存 tokens",
"einoUsageReasoningTokens": "推理 tokens",
"einoEmptyResponseContinueTitle": "🔁 自动续跑(无助手正文)",
"einoEmptyResponseContinueMessage": "会话已结束但未捕获到助手正文,正在基于轨迹自动续跑…",
"einoRunRetryPlan": "重试进度:第 {{attempt}}/{{maxAttempts}} 次,等待 {{backoffSec}} 秒",
@@ -2809,6 +2818,15 @@
"multiAgentRobotMode": "机器人默认对话模式",
"multiAgentRobotModeHint": "企业微信 / 钉钉 / 飞书机器人每条消息使用的执行模式;Deep / Plan-Execute / Supervisor 需启用多代理。",
"agentAdvanced": "高级设置",
"einoModelRetryMaxRetries": "Eino 原生模型最大重试次数",
"einoModelRetryMaxRetriesHint": "ChatModelAgent 原生 ModelRetry 次数;0 使用后端默认 4。用于 429/5xx/网络抖动和空模型输出。",
"einoModelRetryMaxBackoffSec": "Eino 原生模型最大退避秒数",
"einoModelRetryMaxBackoffSecHint": "模型原生重试的指数退避上限;0 使用后端默认 30 秒。",
"einoModelFailoverChannels": "Eino 模型 Failover 备用通道",
"einoModelFailoverChannelsPlaceholder": "backup-openai\nbackup-claude",
"einoModelFailoverChannelsHint": "主通道原生重试耗尽后按顺序切换 ai.channels 中的通道 ID;每行一个,也支持逗号分隔。",
"einoModelFailoverMaxRetries": "Eino 模型 Failover 最大切换次数",
"einoModelFailoverMaxRetriesHint": "0 表示尝试全部已配置备用通道;大于 0 时限制最多切换几个通道。",
"userLedgerMaxRunes": "用户原文账本总字符上限",
"userLedgerMaxRunesHint": "压缩后注入模型上下文的原始用户输入账本总上限;0 使用后端默认值。DB 原始消息不裁剪。",
"userLedgerEntryMaxRunes": "单条用户原文字符上限",