@zero-library/chat-copilot 3.2.0 → 3.2.1
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/index.cjs.js +579 -293
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.mts +217 -14
- package/dist/index.d.ts +217 -14
- package/dist/index.esm.js +581 -295
- package/dist/index.esm.js.map +1 -1
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -1856,11 +1856,20 @@ interface AttachmentsProps {
|
|
|
1856
1856
|
/** 文件列表变化回调函数 */
|
|
1857
1857
|
onChange: (fileList: InputFile[]) => void;
|
|
1858
1858
|
}
|
|
1859
|
+
/**
|
|
1860
|
+
* 附件组件暴露的方法接口
|
|
1861
|
+
*/
|
|
1862
|
+
interface AttachmentsHandle {
|
|
1863
|
+
/** 校验当前附件状态是否允许发送 */
|
|
1864
|
+
validateFile: () => boolean;
|
|
1865
|
+
/** 复用同一套上传逻辑处理外部传入的文件 */
|
|
1866
|
+
uploadFiles: (files: File[]) => Promise<void>;
|
|
1867
|
+
}
|
|
1859
1868
|
/**
|
|
1860
1869
|
* 附件上传组件
|
|
1861
1870
|
* 支持多文件上传、文件类型验证、文件大小限制等功能
|
|
1862
1871
|
*/
|
|
1863
|
-
declare const _default$1: react.ForwardRefExoticComponent<AttachmentsProps & react.RefAttributes<
|
|
1872
|
+
declare const _default$1: react.ForwardRefExoticComponent<AttachmentsProps & react.RefAttributes<AttachmentsHandle>>;
|
|
1864
1873
|
|
|
1865
1874
|
interface RoleContent {
|
|
1866
1875
|
role: number;
|
|
@@ -1939,8 +1948,16 @@ declare const chatCopilotEnUS: {
|
|
|
1939
1948
|
knowledge: string;
|
|
1940
1949
|
supportedExtensions: string;
|
|
1941
1950
|
empty: string;
|
|
1942
|
-
chatPlaceholder: string;
|
|
1943
1951
|
selectFile: string;
|
|
1952
|
+
unsupportedType: string;
|
|
1953
|
+
maxFileCountExceed: string;
|
|
1954
|
+
maxFileSizeExceed: string;
|
|
1955
|
+
waitUpload: string;
|
|
1956
|
+
checkFailed: string;
|
|
1957
|
+
dropTitle: string;
|
|
1958
|
+
uploadTitle: string;
|
|
1959
|
+
uploadDescription: string;
|
|
1960
|
+
chatPlaceholder: string;
|
|
1944
1961
|
selectPlaceholder: string;
|
|
1945
1962
|
unnamedReport: string;
|
|
1946
1963
|
unnamedChart: string;
|
|
@@ -1961,6 +1978,8 @@ declare const chatCopilotEnUS: {
|
|
|
1961
1978
|
nextStep: string;
|
|
1962
1979
|
submit: string;
|
|
1963
1980
|
submitFailed: string;
|
|
1981
|
+
questionTitle: string;
|
|
1982
|
+
questionSummary: string;
|
|
1964
1983
|
questionCancelled: string;
|
|
1965
1984
|
questionAnswered: string;
|
|
1966
1985
|
questionDetails: string;
|
|
@@ -1986,24 +2005,88 @@ declare const chatCopilotEnUS: {
|
|
|
1986
2005
|
previewEdit: string;
|
|
1987
2006
|
copy: string;
|
|
1988
2007
|
continueText: string;
|
|
2008
|
+
aggregate: string;
|
|
2009
|
+
sequence: string;
|
|
2010
|
+
chatTab: string;
|
|
2011
|
+
traceTab: string;
|
|
2012
|
+
previewTab: string;
|
|
2013
|
+
subAgentTab: string;
|
|
2014
|
+
subAgentExecutionDetail: string;
|
|
2015
|
+
closeSubAgentDetail: string;
|
|
2016
|
+
execItemRunning: string;
|
|
2017
|
+
execItemDone: string;
|
|
2018
|
+
execItemFailed: string;
|
|
2019
|
+
execItemThinking: string;
|
|
2020
|
+
execItemFile: string;
|
|
2021
|
+
execItemPlan: string;
|
|
2022
|
+
execItemSummaryDone: string;
|
|
2023
|
+
execItemSummaryFailed: string;
|
|
2024
|
+
execItemSummaryRunning: string;
|
|
2025
|
+
toolCallFallback: string;
|
|
2026
|
+
viewExecutionDetail: string;
|
|
2027
|
+
executionStart: string;
|
|
2028
|
+
executionEnd: string;
|
|
2029
|
+
unmatchedStep: string;
|
|
2030
|
+
totalDuration: string;
|
|
2031
|
+
contextSummary: string;
|
|
2032
|
+
tokenUsage: string;
|
|
2033
|
+
modelRequestStarted: string;
|
|
2034
|
+
modelRequest: string;
|
|
2035
|
+
executionMetaModel: string;
|
|
2036
|
+
traceMessages: string;
|
|
2037
|
+
traceTools: string;
|
|
2038
|
+
thoughtChain: string;
|
|
2039
|
+
mainContent: string;
|
|
2040
|
+
toolCall: string;
|
|
2041
|
+
result: string;
|
|
2042
|
+
metadata: string;
|
|
2043
|
+
params: string;
|
|
2044
|
+
userInput: string;
|
|
2045
|
+
output: string;
|
|
2046
|
+
executionFinished: string;
|
|
2047
|
+
executionRunning: string;
|
|
2048
|
+
executionLabel: string;
|
|
2049
|
+
duration: string;
|
|
2050
|
+
inputCount: string;
|
|
2051
|
+
outputCount: string;
|
|
2052
|
+
turnsCount: string;
|
|
2053
|
+
toolsCount: string;
|
|
2054
|
+
eventsCount: string;
|
|
2055
|
+
userMessage: string;
|
|
2056
|
+
turnLabel: string;
|
|
2057
|
+
turnFallback: string;
|
|
2058
|
+
executionCountSorted: string;
|
|
2059
|
+
eventDetail: string;
|
|
2060
|
+
traceSelectHint: string;
|
|
2061
|
+
executionTraceEmpty: string;
|
|
2062
|
+
roleUser: string;
|
|
2063
|
+
roleAssistant: string;
|
|
2064
|
+
roleTool: string;
|
|
2065
|
+
roleSystem: string;
|
|
1989
2066
|
noVariables: string;
|
|
2067
|
+
dateToday: string;
|
|
2068
|
+
dateLast7Days: string;
|
|
2069
|
+
dateLast30Days: string;
|
|
2070
|
+
dateLastHalfYear: string;
|
|
2071
|
+
dateEarlier: string;
|
|
2072
|
+
previewNotSupported: string;
|
|
2073
|
+
deleteSuccess: string;
|
|
2074
|
+
operationBlocked: string;
|
|
2075
|
+
favoriteSuccess: string;
|
|
2076
|
+
unfavoriteSuccess: string;
|
|
2077
|
+
feedbackThanks: string;
|
|
2078
|
+
sendFailed: string;
|
|
2079
|
+
newConversationTitle: string;
|
|
1990
2080
|
stopped: string;
|
|
1991
2081
|
greetingHello: string;
|
|
1992
2082
|
greetingSubtitle: string;
|
|
1993
2083
|
disclaimer: string;
|
|
2084
|
+
helloIam: string;
|
|
2085
|
+
newConversation: string;
|
|
1994
2086
|
uploadFromLocal: string;
|
|
1995
2087
|
edit: string;
|
|
1996
2088
|
noUserInputFields: string;
|
|
1997
2089
|
startConversation: string;
|
|
1998
|
-
helloIam: string;
|
|
1999
|
-
newConversation: string;
|
|
2000
|
-
sendFailed: string;
|
|
2001
|
-
previewNotSupported: string;
|
|
2002
|
-
operationBlocked: string;
|
|
2003
|
-
deleteSuccess: string;
|
|
2004
|
-
favoriteSuccess: string;
|
|
2005
|
-
unfavoriteSuccess: string;
|
|
2006
|
-
feedbackThanks: string;
|
|
2007
2090
|
};
|
|
2008
2091
|
|
|
2009
2092
|
/**
|
|
@@ -2084,6 +2167,8 @@ declare const chatCopilotJaJP: {
|
|
|
2084
2167
|
nextStep: string;
|
|
2085
2168
|
submit: string;
|
|
2086
2169
|
submitFailed: string;
|
|
2170
|
+
questionTitle: string;
|
|
2171
|
+
questionSummary: string;
|
|
2087
2172
|
questionCancelled: string;
|
|
2088
2173
|
questionAnswered: string;
|
|
2089
2174
|
questionDetails: string;
|
|
@@ -2109,6 +2194,64 @@ declare const chatCopilotJaJP: {
|
|
|
2109
2194
|
previewEdit: string;
|
|
2110
2195
|
copy: string;
|
|
2111
2196
|
continueText: string;
|
|
2197
|
+
aggregate: string;
|
|
2198
|
+
sequence: string;
|
|
2199
|
+
chatTab: string;
|
|
2200
|
+
traceTab: string;
|
|
2201
|
+
previewTab: string;
|
|
2202
|
+
subAgentTab: string;
|
|
2203
|
+
subAgentExecutionDetail: string;
|
|
2204
|
+
closeSubAgentDetail: string;
|
|
2205
|
+
execItemRunning: string;
|
|
2206
|
+
execItemDone: string;
|
|
2207
|
+
execItemFailed: string;
|
|
2208
|
+
execItemThinking: string;
|
|
2209
|
+
execItemFile: string;
|
|
2210
|
+
execItemPlan: string;
|
|
2211
|
+
execItemSummaryDone: string;
|
|
2212
|
+
execItemSummaryFailed: string;
|
|
2213
|
+
execItemSummaryRunning: string;
|
|
2214
|
+
toolCallFallback: string;
|
|
2215
|
+
viewExecutionDetail: string;
|
|
2216
|
+
executionStart: string;
|
|
2217
|
+
executionEnd: string;
|
|
2218
|
+
unmatchedStep: string;
|
|
2219
|
+
totalDuration: string;
|
|
2220
|
+
contextSummary: string;
|
|
2221
|
+
tokenUsage: string;
|
|
2222
|
+
modelRequestStarted: string;
|
|
2223
|
+
modelRequest: string;
|
|
2224
|
+
executionMetaModel: string;
|
|
2225
|
+
traceMessages: string;
|
|
2226
|
+
traceTools: string;
|
|
2227
|
+
thoughtChain: string;
|
|
2228
|
+
mainContent: string;
|
|
2229
|
+
toolCall: string;
|
|
2230
|
+
result: string;
|
|
2231
|
+
metadata: string;
|
|
2232
|
+
params: string;
|
|
2233
|
+
userInput: string;
|
|
2234
|
+
output: string;
|
|
2235
|
+
executionFinished: string;
|
|
2236
|
+
executionRunning: string;
|
|
2237
|
+
executionLabel: string;
|
|
2238
|
+
duration: string;
|
|
2239
|
+
inputCount: string;
|
|
2240
|
+
outputCount: string;
|
|
2241
|
+
turnsCount: string;
|
|
2242
|
+
toolsCount: string;
|
|
2243
|
+
eventsCount: string;
|
|
2244
|
+
userMessage: string;
|
|
2245
|
+
turnLabel: string;
|
|
2246
|
+
turnFallback: string;
|
|
2247
|
+
executionCountSorted: string;
|
|
2248
|
+
eventDetail: string;
|
|
2249
|
+
traceSelectHint: string;
|
|
2250
|
+
executionTraceEmpty: string;
|
|
2251
|
+
roleUser: string;
|
|
2252
|
+
roleAssistant: string;
|
|
2253
|
+
roleTool: string;
|
|
2254
|
+
roleSystem: string;
|
|
2112
2255
|
noVariables: string;
|
|
2113
2256
|
dateToday: string;
|
|
2114
2257
|
dateLast7Days: string;
|
|
@@ -2213,9 +2356,11 @@ declare const chatCopilotZhCN: {
|
|
|
2213
2356
|
readonly nextStep: "下一步";
|
|
2214
2357
|
readonly submit: "提交";
|
|
2215
2358
|
readonly submitFailed: "提交失败,请稍后重试";
|
|
2216
|
-
readonly
|
|
2217
|
-
readonly
|
|
2218
|
-
readonly
|
|
2359
|
+
readonly questionTitle: "问题";
|
|
2360
|
+
readonly questionSummary: "{{label}}:{{content}}";
|
|
2361
|
+
readonly questionCancelled: "已取消";
|
|
2362
|
+
readonly questionAnswered: "已回答";
|
|
2363
|
+
readonly questionDetails: "{{details}}";
|
|
2219
2364
|
readonly basicInfoSubmitted: "已提交基础信息";
|
|
2220
2365
|
readonly paramsSubmitted: "已提交参数配置";
|
|
2221
2366
|
readonly backToBasic: "已返回修改基础信息";
|
|
@@ -2238,6 +2383,64 @@ declare const chatCopilotZhCN: {
|
|
|
2238
2383
|
readonly previewEdit: "预览编辑";
|
|
2239
2384
|
readonly copy: "复制";
|
|
2240
2385
|
readonly continueText: "继续";
|
|
2386
|
+
readonly aggregate: "聚合";
|
|
2387
|
+
readonly sequence: "顺序";
|
|
2388
|
+
readonly chatTab: "对话";
|
|
2389
|
+
readonly traceTab: "执行轨迹";
|
|
2390
|
+
readonly previewTab: "文件预览";
|
|
2391
|
+
readonly subAgentTab: "子智能体";
|
|
2392
|
+
readonly subAgentExecutionDetail: "子智能体执行详情";
|
|
2393
|
+
readonly closeSubAgentDetail: "关闭子智能体详情";
|
|
2394
|
+
readonly execItemRunning: "执行中";
|
|
2395
|
+
readonly execItemDone: "已执行";
|
|
2396
|
+
readonly execItemFailed: "执行失败";
|
|
2397
|
+
readonly execItemThinking: "思考过程";
|
|
2398
|
+
readonly execItemFile: "文件";
|
|
2399
|
+
readonly execItemPlan: "执行计划";
|
|
2400
|
+
readonly execItemSummaryDone: "{{count}} 项完成";
|
|
2401
|
+
readonly execItemSummaryFailed: "{{count}} 项失败";
|
|
2402
|
+
readonly execItemSummaryRunning: "{{count}} 项执行中";
|
|
2403
|
+
readonly toolCallFallback: "工具调用";
|
|
2404
|
+
readonly viewExecutionDetail: "查看执行详情";
|
|
2405
|
+
readonly executionStart: "开始";
|
|
2406
|
+
readonly executionEnd: "结束";
|
|
2407
|
+
readonly unmatchedStep: "未匹配步骤";
|
|
2408
|
+
readonly totalDuration: "总耗时 {{value}}";
|
|
2409
|
+
readonly contextSummary: "上下文 {{messages}} 条消息 · {{tools}} 个工具 · {{model}}";
|
|
2410
|
+
readonly tokenUsage: "输入 {{input}} -> 输出 {{output}} tokens";
|
|
2411
|
+
readonly modelRequestStarted: "发起模型调用";
|
|
2412
|
+
readonly modelRequest: "模型请求";
|
|
2413
|
+
readonly executionMetaModel: "模型 {{model}} · 上下文窗口 {{contextWindow}}";
|
|
2414
|
+
readonly traceMessages: "消息({{count}})";
|
|
2415
|
+
readonly traceTools: "工具({{count}})";
|
|
2416
|
+
readonly thoughtChain: "思维链";
|
|
2417
|
+
readonly mainContent: "正文";
|
|
2418
|
+
readonly toolCall: "工具调用";
|
|
2419
|
+
readonly result: "结果";
|
|
2420
|
+
readonly metadata: "元数据";
|
|
2421
|
+
readonly params: "参数";
|
|
2422
|
+
readonly userInput: "用户输入";
|
|
2423
|
+
readonly output: "输出";
|
|
2424
|
+
readonly executionFinished: "执行完成";
|
|
2425
|
+
readonly executionRunning: "执行中";
|
|
2426
|
+
readonly executionLabel: "执行 #{{id}}";
|
|
2427
|
+
readonly duration: "耗时 {{value}}";
|
|
2428
|
+
readonly inputCount: "输入 {{count}}";
|
|
2429
|
+
readonly outputCount: "输出 {{count}}";
|
|
2430
|
+
readonly turnsCount: "{{count}} 轮";
|
|
2431
|
+
readonly toolsCount: "{{count}} 次工具";
|
|
2432
|
+
readonly eventsCount: "{{count}} 个事件";
|
|
2433
|
+
readonly userMessage: "用户消息";
|
|
2434
|
+
readonly turnLabel: "轮次 {{index}} · {{title}}";
|
|
2435
|
+
readonly turnFallback: "轮次 {{index}}";
|
|
2436
|
+
readonly executionCountSorted: "共 {{count}} 次执行 · 按时间正序";
|
|
2437
|
+
readonly eventDetail: "事件详情";
|
|
2438
|
+
readonly traceSelectHint: "点击左侧事件查看详情";
|
|
2439
|
+
readonly executionTraceEmpty: "暂无执行轨迹数据";
|
|
2440
|
+
readonly roleUser: "用户";
|
|
2441
|
+
readonly roleAssistant: "助手";
|
|
2442
|
+
readonly roleTool: "工具";
|
|
2443
|
+
readonly roleSystem: "系统";
|
|
2241
2444
|
readonly noVariables: "暂无可用变量";
|
|
2242
2445
|
readonly dateToday: "今天";
|
|
2243
2446
|
readonly dateLast7Days: "最近 7 天";
|
package/dist/index.d.ts
CHANGED
|
@@ -1856,11 +1856,20 @@ interface AttachmentsProps {
|
|
|
1856
1856
|
/** 文件列表变化回调函数 */
|
|
1857
1857
|
onChange: (fileList: InputFile[]) => void;
|
|
1858
1858
|
}
|
|
1859
|
+
/**
|
|
1860
|
+
* 附件组件暴露的方法接口
|
|
1861
|
+
*/
|
|
1862
|
+
interface AttachmentsHandle {
|
|
1863
|
+
/** 校验当前附件状态是否允许发送 */
|
|
1864
|
+
validateFile: () => boolean;
|
|
1865
|
+
/** 复用同一套上传逻辑处理外部传入的文件 */
|
|
1866
|
+
uploadFiles: (files: File[]) => Promise<void>;
|
|
1867
|
+
}
|
|
1859
1868
|
/**
|
|
1860
1869
|
* 附件上传组件
|
|
1861
1870
|
* 支持多文件上传、文件类型验证、文件大小限制等功能
|
|
1862
1871
|
*/
|
|
1863
|
-
declare const _default$1: react.ForwardRefExoticComponent<AttachmentsProps & react.RefAttributes<
|
|
1872
|
+
declare const _default$1: react.ForwardRefExoticComponent<AttachmentsProps & react.RefAttributes<AttachmentsHandle>>;
|
|
1864
1873
|
|
|
1865
1874
|
interface RoleContent {
|
|
1866
1875
|
role: number;
|
|
@@ -1939,8 +1948,16 @@ declare const chatCopilotEnUS: {
|
|
|
1939
1948
|
knowledge: string;
|
|
1940
1949
|
supportedExtensions: string;
|
|
1941
1950
|
empty: string;
|
|
1942
|
-
chatPlaceholder: string;
|
|
1943
1951
|
selectFile: string;
|
|
1952
|
+
unsupportedType: string;
|
|
1953
|
+
maxFileCountExceed: string;
|
|
1954
|
+
maxFileSizeExceed: string;
|
|
1955
|
+
waitUpload: string;
|
|
1956
|
+
checkFailed: string;
|
|
1957
|
+
dropTitle: string;
|
|
1958
|
+
uploadTitle: string;
|
|
1959
|
+
uploadDescription: string;
|
|
1960
|
+
chatPlaceholder: string;
|
|
1944
1961
|
selectPlaceholder: string;
|
|
1945
1962
|
unnamedReport: string;
|
|
1946
1963
|
unnamedChart: string;
|
|
@@ -1961,6 +1978,8 @@ declare const chatCopilotEnUS: {
|
|
|
1961
1978
|
nextStep: string;
|
|
1962
1979
|
submit: string;
|
|
1963
1980
|
submitFailed: string;
|
|
1981
|
+
questionTitle: string;
|
|
1982
|
+
questionSummary: string;
|
|
1964
1983
|
questionCancelled: string;
|
|
1965
1984
|
questionAnswered: string;
|
|
1966
1985
|
questionDetails: string;
|
|
@@ -1986,24 +2005,88 @@ declare const chatCopilotEnUS: {
|
|
|
1986
2005
|
previewEdit: string;
|
|
1987
2006
|
copy: string;
|
|
1988
2007
|
continueText: string;
|
|
2008
|
+
aggregate: string;
|
|
2009
|
+
sequence: string;
|
|
2010
|
+
chatTab: string;
|
|
2011
|
+
traceTab: string;
|
|
2012
|
+
previewTab: string;
|
|
2013
|
+
subAgentTab: string;
|
|
2014
|
+
subAgentExecutionDetail: string;
|
|
2015
|
+
closeSubAgentDetail: string;
|
|
2016
|
+
execItemRunning: string;
|
|
2017
|
+
execItemDone: string;
|
|
2018
|
+
execItemFailed: string;
|
|
2019
|
+
execItemThinking: string;
|
|
2020
|
+
execItemFile: string;
|
|
2021
|
+
execItemPlan: string;
|
|
2022
|
+
execItemSummaryDone: string;
|
|
2023
|
+
execItemSummaryFailed: string;
|
|
2024
|
+
execItemSummaryRunning: string;
|
|
2025
|
+
toolCallFallback: string;
|
|
2026
|
+
viewExecutionDetail: string;
|
|
2027
|
+
executionStart: string;
|
|
2028
|
+
executionEnd: string;
|
|
2029
|
+
unmatchedStep: string;
|
|
2030
|
+
totalDuration: string;
|
|
2031
|
+
contextSummary: string;
|
|
2032
|
+
tokenUsage: string;
|
|
2033
|
+
modelRequestStarted: string;
|
|
2034
|
+
modelRequest: string;
|
|
2035
|
+
executionMetaModel: string;
|
|
2036
|
+
traceMessages: string;
|
|
2037
|
+
traceTools: string;
|
|
2038
|
+
thoughtChain: string;
|
|
2039
|
+
mainContent: string;
|
|
2040
|
+
toolCall: string;
|
|
2041
|
+
result: string;
|
|
2042
|
+
metadata: string;
|
|
2043
|
+
params: string;
|
|
2044
|
+
userInput: string;
|
|
2045
|
+
output: string;
|
|
2046
|
+
executionFinished: string;
|
|
2047
|
+
executionRunning: string;
|
|
2048
|
+
executionLabel: string;
|
|
2049
|
+
duration: string;
|
|
2050
|
+
inputCount: string;
|
|
2051
|
+
outputCount: string;
|
|
2052
|
+
turnsCount: string;
|
|
2053
|
+
toolsCount: string;
|
|
2054
|
+
eventsCount: string;
|
|
2055
|
+
userMessage: string;
|
|
2056
|
+
turnLabel: string;
|
|
2057
|
+
turnFallback: string;
|
|
2058
|
+
executionCountSorted: string;
|
|
2059
|
+
eventDetail: string;
|
|
2060
|
+
traceSelectHint: string;
|
|
2061
|
+
executionTraceEmpty: string;
|
|
2062
|
+
roleUser: string;
|
|
2063
|
+
roleAssistant: string;
|
|
2064
|
+
roleTool: string;
|
|
2065
|
+
roleSystem: string;
|
|
1989
2066
|
noVariables: string;
|
|
2067
|
+
dateToday: string;
|
|
2068
|
+
dateLast7Days: string;
|
|
2069
|
+
dateLast30Days: string;
|
|
2070
|
+
dateLastHalfYear: string;
|
|
2071
|
+
dateEarlier: string;
|
|
2072
|
+
previewNotSupported: string;
|
|
2073
|
+
deleteSuccess: string;
|
|
2074
|
+
operationBlocked: string;
|
|
2075
|
+
favoriteSuccess: string;
|
|
2076
|
+
unfavoriteSuccess: string;
|
|
2077
|
+
feedbackThanks: string;
|
|
2078
|
+
sendFailed: string;
|
|
2079
|
+
newConversationTitle: string;
|
|
1990
2080
|
stopped: string;
|
|
1991
2081
|
greetingHello: string;
|
|
1992
2082
|
greetingSubtitle: string;
|
|
1993
2083
|
disclaimer: string;
|
|
2084
|
+
helloIam: string;
|
|
2085
|
+
newConversation: string;
|
|
1994
2086
|
uploadFromLocal: string;
|
|
1995
2087
|
edit: string;
|
|
1996
2088
|
noUserInputFields: string;
|
|
1997
2089
|
startConversation: string;
|
|
1998
|
-
helloIam: string;
|
|
1999
|
-
newConversation: string;
|
|
2000
|
-
sendFailed: string;
|
|
2001
|
-
previewNotSupported: string;
|
|
2002
|
-
operationBlocked: string;
|
|
2003
|
-
deleteSuccess: string;
|
|
2004
|
-
favoriteSuccess: string;
|
|
2005
|
-
unfavoriteSuccess: string;
|
|
2006
|
-
feedbackThanks: string;
|
|
2007
2090
|
};
|
|
2008
2091
|
|
|
2009
2092
|
/**
|
|
@@ -2084,6 +2167,8 @@ declare const chatCopilotJaJP: {
|
|
|
2084
2167
|
nextStep: string;
|
|
2085
2168
|
submit: string;
|
|
2086
2169
|
submitFailed: string;
|
|
2170
|
+
questionTitle: string;
|
|
2171
|
+
questionSummary: string;
|
|
2087
2172
|
questionCancelled: string;
|
|
2088
2173
|
questionAnswered: string;
|
|
2089
2174
|
questionDetails: string;
|
|
@@ -2109,6 +2194,64 @@ declare const chatCopilotJaJP: {
|
|
|
2109
2194
|
previewEdit: string;
|
|
2110
2195
|
copy: string;
|
|
2111
2196
|
continueText: string;
|
|
2197
|
+
aggregate: string;
|
|
2198
|
+
sequence: string;
|
|
2199
|
+
chatTab: string;
|
|
2200
|
+
traceTab: string;
|
|
2201
|
+
previewTab: string;
|
|
2202
|
+
subAgentTab: string;
|
|
2203
|
+
subAgentExecutionDetail: string;
|
|
2204
|
+
closeSubAgentDetail: string;
|
|
2205
|
+
execItemRunning: string;
|
|
2206
|
+
execItemDone: string;
|
|
2207
|
+
execItemFailed: string;
|
|
2208
|
+
execItemThinking: string;
|
|
2209
|
+
execItemFile: string;
|
|
2210
|
+
execItemPlan: string;
|
|
2211
|
+
execItemSummaryDone: string;
|
|
2212
|
+
execItemSummaryFailed: string;
|
|
2213
|
+
execItemSummaryRunning: string;
|
|
2214
|
+
toolCallFallback: string;
|
|
2215
|
+
viewExecutionDetail: string;
|
|
2216
|
+
executionStart: string;
|
|
2217
|
+
executionEnd: string;
|
|
2218
|
+
unmatchedStep: string;
|
|
2219
|
+
totalDuration: string;
|
|
2220
|
+
contextSummary: string;
|
|
2221
|
+
tokenUsage: string;
|
|
2222
|
+
modelRequestStarted: string;
|
|
2223
|
+
modelRequest: string;
|
|
2224
|
+
executionMetaModel: string;
|
|
2225
|
+
traceMessages: string;
|
|
2226
|
+
traceTools: string;
|
|
2227
|
+
thoughtChain: string;
|
|
2228
|
+
mainContent: string;
|
|
2229
|
+
toolCall: string;
|
|
2230
|
+
result: string;
|
|
2231
|
+
metadata: string;
|
|
2232
|
+
params: string;
|
|
2233
|
+
userInput: string;
|
|
2234
|
+
output: string;
|
|
2235
|
+
executionFinished: string;
|
|
2236
|
+
executionRunning: string;
|
|
2237
|
+
executionLabel: string;
|
|
2238
|
+
duration: string;
|
|
2239
|
+
inputCount: string;
|
|
2240
|
+
outputCount: string;
|
|
2241
|
+
turnsCount: string;
|
|
2242
|
+
toolsCount: string;
|
|
2243
|
+
eventsCount: string;
|
|
2244
|
+
userMessage: string;
|
|
2245
|
+
turnLabel: string;
|
|
2246
|
+
turnFallback: string;
|
|
2247
|
+
executionCountSorted: string;
|
|
2248
|
+
eventDetail: string;
|
|
2249
|
+
traceSelectHint: string;
|
|
2250
|
+
executionTraceEmpty: string;
|
|
2251
|
+
roleUser: string;
|
|
2252
|
+
roleAssistant: string;
|
|
2253
|
+
roleTool: string;
|
|
2254
|
+
roleSystem: string;
|
|
2112
2255
|
noVariables: string;
|
|
2113
2256
|
dateToday: string;
|
|
2114
2257
|
dateLast7Days: string;
|
|
@@ -2213,9 +2356,11 @@ declare const chatCopilotZhCN: {
|
|
|
2213
2356
|
readonly nextStep: "下一步";
|
|
2214
2357
|
readonly submit: "提交";
|
|
2215
2358
|
readonly submitFailed: "提交失败,请稍后重试";
|
|
2216
|
-
readonly
|
|
2217
|
-
readonly
|
|
2218
|
-
readonly
|
|
2359
|
+
readonly questionTitle: "问题";
|
|
2360
|
+
readonly questionSummary: "{{label}}:{{content}}";
|
|
2361
|
+
readonly questionCancelled: "已取消";
|
|
2362
|
+
readonly questionAnswered: "已回答";
|
|
2363
|
+
readonly questionDetails: "{{details}}";
|
|
2219
2364
|
readonly basicInfoSubmitted: "已提交基础信息";
|
|
2220
2365
|
readonly paramsSubmitted: "已提交参数配置";
|
|
2221
2366
|
readonly backToBasic: "已返回修改基础信息";
|
|
@@ -2238,6 +2383,64 @@ declare const chatCopilotZhCN: {
|
|
|
2238
2383
|
readonly previewEdit: "预览编辑";
|
|
2239
2384
|
readonly copy: "复制";
|
|
2240
2385
|
readonly continueText: "继续";
|
|
2386
|
+
readonly aggregate: "聚合";
|
|
2387
|
+
readonly sequence: "顺序";
|
|
2388
|
+
readonly chatTab: "对话";
|
|
2389
|
+
readonly traceTab: "执行轨迹";
|
|
2390
|
+
readonly previewTab: "文件预览";
|
|
2391
|
+
readonly subAgentTab: "子智能体";
|
|
2392
|
+
readonly subAgentExecutionDetail: "子智能体执行详情";
|
|
2393
|
+
readonly closeSubAgentDetail: "关闭子智能体详情";
|
|
2394
|
+
readonly execItemRunning: "执行中";
|
|
2395
|
+
readonly execItemDone: "已执行";
|
|
2396
|
+
readonly execItemFailed: "执行失败";
|
|
2397
|
+
readonly execItemThinking: "思考过程";
|
|
2398
|
+
readonly execItemFile: "文件";
|
|
2399
|
+
readonly execItemPlan: "执行计划";
|
|
2400
|
+
readonly execItemSummaryDone: "{{count}} 项完成";
|
|
2401
|
+
readonly execItemSummaryFailed: "{{count}} 项失败";
|
|
2402
|
+
readonly execItemSummaryRunning: "{{count}} 项执行中";
|
|
2403
|
+
readonly toolCallFallback: "工具调用";
|
|
2404
|
+
readonly viewExecutionDetail: "查看执行详情";
|
|
2405
|
+
readonly executionStart: "开始";
|
|
2406
|
+
readonly executionEnd: "结束";
|
|
2407
|
+
readonly unmatchedStep: "未匹配步骤";
|
|
2408
|
+
readonly totalDuration: "总耗时 {{value}}";
|
|
2409
|
+
readonly contextSummary: "上下文 {{messages}} 条消息 · {{tools}} 个工具 · {{model}}";
|
|
2410
|
+
readonly tokenUsage: "输入 {{input}} -> 输出 {{output}} tokens";
|
|
2411
|
+
readonly modelRequestStarted: "发起模型调用";
|
|
2412
|
+
readonly modelRequest: "模型请求";
|
|
2413
|
+
readonly executionMetaModel: "模型 {{model}} · 上下文窗口 {{contextWindow}}";
|
|
2414
|
+
readonly traceMessages: "消息({{count}})";
|
|
2415
|
+
readonly traceTools: "工具({{count}})";
|
|
2416
|
+
readonly thoughtChain: "思维链";
|
|
2417
|
+
readonly mainContent: "正文";
|
|
2418
|
+
readonly toolCall: "工具调用";
|
|
2419
|
+
readonly result: "结果";
|
|
2420
|
+
readonly metadata: "元数据";
|
|
2421
|
+
readonly params: "参数";
|
|
2422
|
+
readonly userInput: "用户输入";
|
|
2423
|
+
readonly output: "输出";
|
|
2424
|
+
readonly executionFinished: "执行完成";
|
|
2425
|
+
readonly executionRunning: "执行中";
|
|
2426
|
+
readonly executionLabel: "执行 #{{id}}";
|
|
2427
|
+
readonly duration: "耗时 {{value}}";
|
|
2428
|
+
readonly inputCount: "输入 {{count}}";
|
|
2429
|
+
readonly outputCount: "输出 {{count}}";
|
|
2430
|
+
readonly turnsCount: "{{count}} 轮";
|
|
2431
|
+
readonly toolsCount: "{{count}} 次工具";
|
|
2432
|
+
readonly eventsCount: "{{count}} 个事件";
|
|
2433
|
+
readonly userMessage: "用户消息";
|
|
2434
|
+
readonly turnLabel: "轮次 {{index}} · {{title}}";
|
|
2435
|
+
readonly turnFallback: "轮次 {{index}}";
|
|
2436
|
+
readonly executionCountSorted: "共 {{count}} 次执行 · 按时间正序";
|
|
2437
|
+
readonly eventDetail: "事件详情";
|
|
2438
|
+
readonly traceSelectHint: "点击左侧事件查看详情";
|
|
2439
|
+
readonly executionTraceEmpty: "暂无执行轨迹数据";
|
|
2440
|
+
readonly roleUser: "用户";
|
|
2441
|
+
readonly roleAssistant: "助手";
|
|
2442
|
+
readonly roleTool: "工具";
|
|
2443
|
+
readonly roleSystem: "系统";
|
|
2241
2444
|
readonly noVariables: "暂无可用变量";
|
|
2242
2445
|
readonly dateToday: "今天";
|
|
2243
2446
|
readonly dateLast7Days: "最近 7 天";
|