@zero-library/chat-copilot 3.1.30 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +1924 -426
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.css +565 -117
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +441 -7
- package/dist/index.d.ts +441 -7
- package/dist/index.esm.js +1924 -430
- package/dist/index.esm.js.map +1 -1
- package/package.json +7 -5
package/dist/index.d.ts
CHANGED
|
@@ -449,8 +449,10 @@ interface ToolCallEvent {
|
|
|
449
449
|
display?: DisplayView | null;
|
|
450
450
|
/** 执行状态 */
|
|
451
451
|
status?: 'pending' | 'running' | 'success' | 'error';
|
|
452
|
-
/**
|
|
452
|
+
/** 该工具是否触发了子智能体(toolResult.metadata.conversationId 存在时标记) */
|
|
453
453
|
hasSubAgent?: boolean;
|
|
454
|
+
/** 子智能体会话 ID(来自 toolResult.metadata.conversationId),用于独立存储和懒加载 */
|
|
455
|
+
subConversationId?: string;
|
|
454
456
|
/** 前端内部标记:是否使用 display 协议渲染 */
|
|
455
457
|
displayProtocol?: boolean;
|
|
456
458
|
}
|
|
@@ -521,6 +523,52 @@ interface CitationEvent {
|
|
|
521
523
|
citations?: Citation[];
|
|
522
524
|
}
|
|
523
525
|
type MessageEvent = RunStartedEvent | TextEvent | FilesEvent | StepStartedEvent | StepFinishedEvent | StepErrorEvent | RunFinishedEvent | RunStoppedEvent | ConversationNewTitleEvent | ToolCallEvent | ToolCallDeltaEvent | ToolResultEvent | RunFailedEvent | A2uiCommandEvent | A2uiSchemaEvent | PlanEvent | CitationEvent;
|
|
526
|
+
/** 单条执行事件 */
|
|
527
|
+
interface DebugEvent {
|
|
528
|
+
/** 事件唯一ID */
|
|
529
|
+
id: string;
|
|
530
|
+
/** 所属执行ID */
|
|
531
|
+
executionId: string;
|
|
532
|
+
/** 步骤ID(react-step-1, react-step-2...) */
|
|
533
|
+
stepId?: string | null;
|
|
534
|
+
/** 父步骤ID(嵌套子智能体时) */
|
|
535
|
+
parentStepId?: string | null;
|
|
536
|
+
/** 全局序号 */
|
|
537
|
+
seq: number;
|
|
538
|
+
/** 事件类型 */
|
|
539
|
+
eventType: string;
|
|
540
|
+
/** 事件载荷(包含完整事件信息) */
|
|
541
|
+
payloadJson: {
|
|
542
|
+
depth?: number;
|
|
543
|
+
event?: Record<string, any>;
|
|
544
|
+
executionId?: number | string;
|
|
545
|
+
parentExecutionId?: number | string | null;
|
|
546
|
+
schemaVersion?: number;
|
|
547
|
+
seq?: number;
|
|
548
|
+
timestampMs?: number;
|
|
549
|
+
};
|
|
550
|
+
/** 后端记录时间 */
|
|
551
|
+
createdAt: string;
|
|
552
|
+
}
|
|
553
|
+
/** 执行轨迹响应 */
|
|
554
|
+
interface ExecutionDebug {
|
|
555
|
+
/** 执行ID */
|
|
556
|
+
id: string;
|
|
557
|
+
/** 执行状态:running / finished / error / stopped */
|
|
558
|
+
status: string;
|
|
559
|
+
/** 开始时间 */
|
|
560
|
+
startedAt: string;
|
|
561
|
+
/** 结束时间 */
|
|
562
|
+
finishedAt?: string | null;
|
|
563
|
+
/** 输出消息ID */
|
|
564
|
+
outputMessageId?: string | null;
|
|
565
|
+
/** 错误码 */
|
|
566
|
+
errorCode?: string | null;
|
|
567
|
+
/** 错误信息 */
|
|
568
|
+
errorMessage?: string | null;
|
|
569
|
+
/** 事件列表(按 seq 排序) */
|
|
570
|
+
events: DebugEvent[];
|
|
571
|
+
}
|
|
524
572
|
/**
|
|
525
573
|
* 消息类型
|
|
526
574
|
* 定义智能体和用户之间的消息结构
|
|
@@ -534,7 +582,7 @@ interface ConversationMessage {
|
|
|
534
582
|
conversationId: string;
|
|
535
583
|
/** 执行ID */
|
|
536
584
|
executionId: string;
|
|
537
|
-
/** 角色:1
|
|
585
|
+
/** 角色:1-用户 2-智能体(与主会话 conversationRoles 约定一致,左右位置据此外推) */
|
|
538
586
|
role: number;
|
|
539
587
|
/** 消息内容 */
|
|
540
588
|
content: MessageEvent[];
|
|
@@ -552,16 +600,24 @@ interface ConversationMessage {
|
|
|
552
600
|
stopFlag?: boolean;
|
|
553
601
|
/** 是否正在生成中 */
|
|
554
602
|
generating?: boolean;
|
|
555
|
-
/**
|
|
556
|
-
|
|
603
|
+
/** 子智能体名称,前端展示用(后端字段名 agentName) */
|
|
604
|
+
agentName?: string;
|
|
557
605
|
/** 父执行 ID,用于关联到主智能体的执行 */
|
|
558
606
|
parentExecutionId?: string;
|
|
559
|
-
/** 嵌套深度(0=顶层,1
|
|
560
|
-
|
|
607
|
+
/** 嵌套深度(0=顶层,1=一级子智能体,后端字段名 depth) */
|
|
608
|
+
depth?: number;
|
|
561
609
|
/** 父 agent_spawn 工具调用 ID,前端通过此字段将子智能体消息归属到对应工具块 */
|
|
562
610
|
toolCallId?: string;
|
|
563
611
|
}
|
|
564
612
|
|
|
613
|
+
/**
|
|
614
|
+
* 智能体执行链展示模式
|
|
615
|
+
* - aggregate:聚合模式(默认)。将每次执行压缩为「状态图标 + 类型标签 + 单行截断详情」的折叠列表,
|
|
616
|
+
* 顶部展示「X 项完成 | Y 项失败」汇总头,最终回答独立渲染在列表下方。
|
|
617
|
+
* - sequence:顺序模式(非聚合)。按真实事件顺序平铺渲染思维链(深度思考)、工具调用、文件、计划与回答,
|
|
618
|
+
* 不做汇总折叠,忠实还原执行时间线。
|
|
619
|
+
*/
|
|
620
|
+
type AgentExecMode = 'aggregate' | 'sequence';
|
|
565
621
|
/**
|
|
566
622
|
* 聊天布局会话列表配置接口
|
|
567
623
|
* 控制会话列表区域的显示和功能
|
|
@@ -874,6 +930,7 @@ declare const createChatService: (request: ReturnType<typeof createRequest>, con
|
|
|
874
930
|
getAgentAvatar: (path: string) => Promise<Blob>;
|
|
875
931
|
conversationFavorite: (conversationId: string, isFavorite: boolean) => Promise<R<boolean>>;
|
|
876
932
|
shareConversation: (conversationId: string) => Promise<R<ShareConversationResponse>>;
|
|
933
|
+
fetchExecutionDebug: (conversationId: string) => Promise<R<PageRes<ExecutionDebug>>>;
|
|
877
934
|
};
|
|
878
935
|
|
|
879
936
|
type RequestInstance = Partial<ReturnType<typeof createChatService>>;
|
|
@@ -1830,4 +1887,381 @@ declare const getFileUrl: (params: DownloadFileReq, baseUrl?: string, url?: stri
|
|
|
1830
1887
|
|
|
1831
1888
|
declare const _default: react.ForwardRefExoticComponent<ChatProps & react.RefAttributes<ChatHandle>>;
|
|
1832
1889
|
|
|
1833
|
-
|
|
1890
|
+
/**
|
|
1891
|
+
* chat-copilot 包命名空间常量
|
|
1892
|
+
*
|
|
1893
|
+
* 命名空间在每个包内部是固定值,统一使用常量引用,避免散落字符串字面量。
|
|
1894
|
+
*/
|
|
1895
|
+
declare const NS_CHAT_COPILOT = "chat-copilot";
|
|
1896
|
+
|
|
1897
|
+
/**
|
|
1898
|
+
* chat-copilot 包英文翻译资源(namespace: chat-copilot)
|
|
1899
|
+
*/
|
|
1900
|
+
declare const chatCopilotEnUS: {
|
|
1901
|
+
uploadFailed: string;
|
|
1902
|
+
valuePlaceholder: string;
|
|
1903
|
+
checkParams: string;
|
|
1904
|
+
inputPlaceholder: string;
|
|
1905
|
+
numberPlaceholder: string;
|
|
1906
|
+
paramSettings: string;
|
|
1907
|
+
all: string;
|
|
1908
|
+
selectSkill: string;
|
|
1909
|
+
selectKnowledge: string;
|
|
1910
|
+
searchSkill: string;
|
|
1911
|
+
searchKnowledge: string;
|
|
1912
|
+
noDescription: string;
|
|
1913
|
+
noMatch: string;
|
|
1914
|
+
selectedCount: string;
|
|
1915
|
+
added: string;
|
|
1916
|
+
collapse: string;
|
|
1917
|
+
expand: string;
|
|
1918
|
+
history: string;
|
|
1919
|
+
create: string;
|
|
1920
|
+
share: string;
|
|
1921
|
+
linkCopied: string;
|
|
1922
|
+
unfavorite: string;
|
|
1923
|
+
favorite: string;
|
|
1924
|
+
delete: string;
|
|
1925
|
+
tipTitle: string;
|
|
1926
|
+
confirm: string;
|
|
1927
|
+
cancel: string;
|
|
1928
|
+
confirmUnfavorite: string;
|
|
1929
|
+
unfavoriteTitle: string;
|
|
1930
|
+
historyTab: string;
|
|
1931
|
+
historyEmpty: string;
|
|
1932
|
+
favoritesTab: string;
|
|
1933
|
+
favoritesEmpty: string;
|
|
1934
|
+
deepAnalysis: string;
|
|
1935
|
+
summaryAnalysis: string;
|
|
1936
|
+
headerClose: string;
|
|
1937
|
+
deepThinking: string;
|
|
1938
|
+
skill: string;
|
|
1939
|
+
knowledge: string;
|
|
1940
|
+
supportedExtensions: string;
|
|
1941
|
+
empty: string;
|
|
1942
|
+
chatPlaceholder: string;
|
|
1943
|
+
selectFile: string;
|
|
1944
|
+
selectPlaceholder: string;
|
|
1945
|
+
unnamedReport: string;
|
|
1946
|
+
unnamedChart: string;
|
|
1947
|
+
unnamedTable: string;
|
|
1948
|
+
unnamedContent: string;
|
|
1949
|
+
chart: string;
|
|
1950
|
+
exportPng: string;
|
|
1951
|
+
report: string;
|
|
1952
|
+
exportMd: string;
|
|
1953
|
+
table: string;
|
|
1954
|
+
exportCsv: string;
|
|
1955
|
+
exportJson: string;
|
|
1956
|
+
boolYes: string;
|
|
1957
|
+
boolNo: string;
|
|
1958
|
+
formTitle: string;
|
|
1959
|
+
stepIndicator: string;
|
|
1960
|
+
prevStep: string;
|
|
1961
|
+
nextStep: string;
|
|
1962
|
+
submit: string;
|
|
1963
|
+
submitFailed: string;
|
|
1964
|
+
questionCancelled: string;
|
|
1965
|
+
questionAnswered: string;
|
|
1966
|
+
questionDetails: string;
|
|
1967
|
+
basicInfoSubmitted: string;
|
|
1968
|
+
paramsSubmitted: string;
|
|
1969
|
+
backToBasic: string;
|
|
1970
|
+
backToParams: string;
|
|
1971
|
+
createConfirmed: string;
|
|
1972
|
+
actionSelected: string;
|
|
1973
|
+
actionSubmitted: string;
|
|
1974
|
+
actionSubmittedNamed: string;
|
|
1975
|
+
quotedMessage: string;
|
|
1976
|
+
answered: string;
|
|
1977
|
+
inputGenerating: string;
|
|
1978
|
+
inputParams: string;
|
|
1979
|
+
outputResult: string;
|
|
1980
|
+
subAgentRunning: string;
|
|
1981
|
+
subAgentNested: string;
|
|
1982
|
+
noTasks: string;
|
|
1983
|
+
clickHere: string;
|
|
1984
|
+
unsupportedChart: string;
|
|
1985
|
+
unsupportedChartDesc: string;
|
|
1986
|
+
previewEdit: string;
|
|
1987
|
+
copy: string;
|
|
1988
|
+
continueText: string;
|
|
1989
|
+
noVariables: string;
|
|
1990
|
+
stopped: string;
|
|
1991
|
+
greetingHello: string;
|
|
1992
|
+
greetingSubtitle: string;
|
|
1993
|
+
disclaimer: string;
|
|
1994
|
+
uploadFromLocal: string;
|
|
1995
|
+
edit: string;
|
|
1996
|
+
noUserInputFields: string;
|
|
1997
|
+
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
|
+
};
|
|
2008
|
+
|
|
2009
|
+
/**
|
|
2010
|
+
* chat-copilot パッケージ日本語翻訳リソース(namespace: chat-copilot)
|
|
2011
|
+
*
|
|
2012
|
+
* 純データ出口、side-effect を含まない。
|
|
2013
|
+
* ホストプロジェクトは I18nProvider の resources パラメータで注入します。
|
|
2014
|
+
*/
|
|
2015
|
+
declare const chatCopilotJaJP: {
|
|
2016
|
+
uploadFailed: string;
|
|
2017
|
+
valuePlaceholder: string;
|
|
2018
|
+
checkParams: string;
|
|
2019
|
+
inputPlaceholder: string;
|
|
2020
|
+
numberPlaceholder: string;
|
|
2021
|
+
paramSettings: string;
|
|
2022
|
+
all: string;
|
|
2023
|
+
selectSkill: string;
|
|
2024
|
+
selectKnowledge: string;
|
|
2025
|
+
searchSkill: string;
|
|
2026
|
+
searchKnowledge: string;
|
|
2027
|
+
noDescription: string;
|
|
2028
|
+
noMatch: string;
|
|
2029
|
+
selectedCount: string;
|
|
2030
|
+
added: string;
|
|
2031
|
+
collapse: string;
|
|
2032
|
+
expand: string;
|
|
2033
|
+
history: string;
|
|
2034
|
+
create: string;
|
|
2035
|
+
share: string;
|
|
2036
|
+
linkCopied: string;
|
|
2037
|
+
unfavorite: string;
|
|
2038
|
+
favorite: string;
|
|
2039
|
+
delete: string;
|
|
2040
|
+
tipTitle: string;
|
|
2041
|
+
confirm: string;
|
|
2042
|
+
cancel: string;
|
|
2043
|
+
confirmUnfavorite: string;
|
|
2044
|
+
unfavoriteTitle: string;
|
|
2045
|
+
historyTab: string;
|
|
2046
|
+
historyEmpty: string;
|
|
2047
|
+
favoritesTab: string;
|
|
2048
|
+
favoritesEmpty: string;
|
|
2049
|
+
deepAnalysis: string;
|
|
2050
|
+
summaryAnalysis: string;
|
|
2051
|
+
headerClose: string;
|
|
2052
|
+
deepThinking: string;
|
|
2053
|
+
skill: string;
|
|
2054
|
+
knowledge: string;
|
|
2055
|
+
supportedExtensions: string;
|
|
2056
|
+
empty: string;
|
|
2057
|
+
selectFile: string;
|
|
2058
|
+
unsupportedType: string;
|
|
2059
|
+
maxFileCountExceed: string;
|
|
2060
|
+
maxFileSizeExceed: string;
|
|
2061
|
+
waitUpload: string;
|
|
2062
|
+
checkFailed: string;
|
|
2063
|
+
dropTitle: string;
|
|
2064
|
+
uploadTitle: string;
|
|
2065
|
+
uploadDescription: string;
|
|
2066
|
+
chatPlaceholder: string;
|
|
2067
|
+
selectPlaceholder: string;
|
|
2068
|
+
unnamedReport: string;
|
|
2069
|
+
unnamedChart: string;
|
|
2070
|
+
unnamedTable: string;
|
|
2071
|
+
unnamedContent: string;
|
|
2072
|
+
chart: string;
|
|
2073
|
+
exportPng: string;
|
|
2074
|
+
report: string;
|
|
2075
|
+
exportMd: string;
|
|
2076
|
+
table: string;
|
|
2077
|
+
exportCsv: string;
|
|
2078
|
+
exportJson: string;
|
|
2079
|
+
boolYes: string;
|
|
2080
|
+
boolNo: string;
|
|
2081
|
+
formTitle: string;
|
|
2082
|
+
stepIndicator: string;
|
|
2083
|
+
prevStep: string;
|
|
2084
|
+
nextStep: string;
|
|
2085
|
+
submit: string;
|
|
2086
|
+
submitFailed: string;
|
|
2087
|
+
questionCancelled: string;
|
|
2088
|
+
questionAnswered: string;
|
|
2089
|
+
questionDetails: string;
|
|
2090
|
+
basicInfoSubmitted: string;
|
|
2091
|
+
paramsSubmitted: string;
|
|
2092
|
+
backToBasic: string;
|
|
2093
|
+
backToParams: string;
|
|
2094
|
+
createConfirmed: string;
|
|
2095
|
+
actionSelected: string;
|
|
2096
|
+
actionSubmitted: string;
|
|
2097
|
+
actionSubmittedNamed: string;
|
|
2098
|
+
quotedMessage: string;
|
|
2099
|
+
answered: string;
|
|
2100
|
+
inputGenerating: string;
|
|
2101
|
+
inputParams: string;
|
|
2102
|
+
outputResult: string;
|
|
2103
|
+
subAgentRunning: string;
|
|
2104
|
+
subAgentNested: string;
|
|
2105
|
+
noTasks: string;
|
|
2106
|
+
clickHere: string;
|
|
2107
|
+
unsupportedChart: string;
|
|
2108
|
+
unsupportedChartDesc: string;
|
|
2109
|
+
previewEdit: string;
|
|
2110
|
+
copy: string;
|
|
2111
|
+
continueText: string;
|
|
2112
|
+
noVariables: string;
|
|
2113
|
+
dateToday: string;
|
|
2114
|
+
dateLast7Days: string;
|
|
2115
|
+
dateLast30Days: string;
|
|
2116
|
+
dateLastHalfYear: string;
|
|
2117
|
+
dateEarlier: string;
|
|
2118
|
+
previewNotSupported: string;
|
|
2119
|
+
deleteSuccess: string;
|
|
2120
|
+
operationBlocked: string;
|
|
2121
|
+
favoriteSuccess: string;
|
|
2122
|
+
unfavoriteSuccess: string;
|
|
2123
|
+
feedbackThanks: string;
|
|
2124
|
+
sendFailed: string;
|
|
2125
|
+
newConversationTitle: string;
|
|
2126
|
+
stopped: string;
|
|
2127
|
+
greetingHello: string;
|
|
2128
|
+
greetingSubtitle: string;
|
|
2129
|
+
disclaimer: string;
|
|
2130
|
+
helloIam: string;
|
|
2131
|
+
newConversation: string;
|
|
2132
|
+
uploadFromLocal: string;
|
|
2133
|
+
edit: string;
|
|
2134
|
+
noUserInputFields: string;
|
|
2135
|
+
startConversation: string;
|
|
2136
|
+
};
|
|
2137
|
+
|
|
2138
|
+
/**
|
|
2139
|
+
* chat-copilot 包中文翻译资源(namespace: chat-copilot)
|
|
2140
|
+
*
|
|
2141
|
+
* 纯数据导出,不含 side-effect。
|
|
2142
|
+
* 宿主项目通过 I18nProvider 的 resources 参数注入。
|
|
2143
|
+
*/
|
|
2144
|
+
declare const chatCopilotZhCN: {
|
|
2145
|
+
readonly uploadFailed: "上传失败";
|
|
2146
|
+
readonly valuePlaceholder: "请输入值...";
|
|
2147
|
+
readonly checkParams: "请检查输入参数";
|
|
2148
|
+
readonly inputPlaceholder: "请输入值";
|
|
2149
|
+
readonly numberPlaceholder: "请输入数值";
|
|
2150
|
+
readonly paramSettings: "参数设置";
|
|
2151
|
+
readonly all: "全部";
|
|
2152
|
+
readonly selectSkill: "选择技能";
|
|
2153
|
+
readonly selectKnowledge: "选择知识库";
|
|
2154
|
+
readonly searchSkill: "搜索技能名称";
|
|
2155
|
+
readonly searchKnowledge: "搜索知识库名称";
|
|
2156
|
+
readonly noDescription: "暂无描述";
|
|
2157
|
+
readonly noMatch: "暂无匹配的搜索结果";
|
|
2158
|
+
readonly selectedCount: "已选 {{count}}";
|
|
2159
|
+
readonly added: "已添加";
|
|
2160
|
+
readonly collapse: "收起";
|
|
2161
|
+
readonly expand: "展开";
|
|
2162
|
+
readonly history: "历史会话";
|
|
2163
|
+
readonly create: "新建会话";
|
|
2164
|
+
readonly share: "分享";
|
|
2165
|
+
readonly linkCopied: "链接已复制,可直接粘贴分享";
|
|
2166
|
+
readonly unfavorite: "取消收藏";
|
|
2167
|
+
readonly favorite: "收藏";
|
|
2168
|
+
readonly delete: "删除";
|
|
2169
|
+
readonly tipTitle: "提示";
|
|
2170
|
+
readonly confirm: "确定";
|
|
2171
|
+
readonly cancel: "取消";
|
|
2172
|
+
readonly confirmUnfavorite: "确认取消收藏该会话吗?";
|
|
2173
|
+
readonly unfavoriteTitle: "取消收藏";
|
|
2174
|
+
readonly historyTab: "历史会话";
|
|
2175
|
+
readonly historyEmpty: "暂无会话记录";
|
|
2176
|
+
readonly favoritesTab: "收藏会话";
|
|
2177
|
+
readonly favoritesEmpty: "暂无收藏会话";
|
|
2178
|
+
readonly deepAnalysis: "深度解读";
|
|
2179
|
+
readonly summaryAnalysis: "概要解读";
|
|
2180
|
+
readonly headerClose: "关闭";
|
|
2181
|
+
readonly deepThinking: "深度思考";
|
|
2182
|
+
readonly skill: "技能";
|
|
2183
|
+
readonly knowledge: "知识库";
|
|
2184
|
+
readonly supportedExtensions: "支持扩展名:{{types}}";
|
|
2185
|
+
readonly empty: "暂无数据";
|
|
2186
|
+
readonly selectFile: "选择文件";
|
|
2187
|
+
readonly unsupportedType: "不支持的文件类型:{{fileName}} ({{fileType}})";
|
|
2188
|
+
readonly maxFileCountExceed: "【{{fileName}}】所属类型最多只能上传 {{max}} 个文件";
|
|
2189
|
+
readonly maxFileSizeExceed: "文件大小不能超过 {{max}} MB";
|
|
2190
|
+
readonly waitUpload: "请等待所有文件上传完成";
|
|
2191
|
+
readonly checkFailed: "请检查上传失败的文件";
|
|
2192
|
+
readonly dropTitle: "将文件放到这里";
|
|
2193
|
+
readonly uploadTitle: "提交文件";
|
|
2194
|
+
readonly uploadDescription: "单击或拖动文件到此区域进行上传";
|
|
2195
|
+
readonly chatPlaceholder: "今天帮你做些什么?";
|
|
2196
|
+
readonly selectPlaceholder: "请选择...";
|
|
2197
|
+
readonly unnamedReport: "未命名报告";
|
|
2198
|
+
readonly unnamedChart: "未命名图表";
|
|
2199
|
+
readonly unnamedTable: "未命名表格";
|
|
2200
|
+
readonly unnamedContent: "未命名内容";
|
|
2201
|
+
readonly chart: "图表";
|
|
2202
|
+
readonly exportPng: "导出PNG";
|
|
2203
|
+
readonly report: "报告";
|
|
2204
|
+
readonly exportMd: "导出MD";
|
|
2205
|
+
readonly table: "表格";
|
|
2206
|
+
readonly exportCsv: "导出CSV";
|
|
2207
|
+
readonly exportJson: "导出JSON";
|
|
2208
|
+
readonly boolYes: "是";
|
|
2209
|
+
readonly boolNo: "否";
|
|
2210
|
+
readonly formTitle: "表单";
|
|
2211
|
+
readonly stepIndicator: "步骤 {{current}}/{{total}}";
|
|
2212
|
+
readonly prevStep: "上一步";
|
|
2213
|
+
readonly nextStep: "下一步";
|
|
2214
|
+
readonly submit: "提交";
|
|
2215
|
+
readonly submitFailed: "提交失败,请稍后重试";
|
|
2216
|
+
readonly questionCancelled: "Question: 已取消";
|
|
2217
|
+
readonly questionAnswered: "Question: 已回答";
|
|
2218
|
+
readonly questionDetails: "Question: {{details}}";
|
|
2219
|
+
readonly basicInfoSubmitted: "已提交基础信息";
|
|
2220
|
+
readonly paramsSubmitted: "已提交参数配置";
|
|
2221
|
+
readonly backToBasic: "已返回修改基础信息";
|
|
2222
|
+
readonly backToParams: "已返回修改参数";
|
|
2223
|
+
readonly createConfirmed: "已确认创建";
|
|
2224
|
+
readonly actionSelected: "已选择";
|
|
2225
|
+
readonly actionSubmitted: "已提交";
|
|
2226
|
+
readonly actionSubmittedNamed: "已提交动作 ({{name}})";
|
|
2227
|
+
readonly quotedMessage: "【引用消息】:";
|
|
2228
|
+
readonly answered: "已回答";
|
|
2229
|
+
readonly inputGenerating: "输入生成中";
|
|
2230
|
+
readonly inputParams: "输入参数";
|
|
2231
|
+
readonly outputResult: "返回结果";
|
|
2232
|
+
readonly subAgentRunning: "子智能体执行中...";
|
|
2233
|
+
readonly subAgentNested: "子智能体执行内容(嵌套层级 {{depth}},已折叠)";
|
|
2234
|
+
readonly noTasks: "暂无任务";
|
|
2235
|
+
readonly clickHere: "点击此处";
|
|
2236
|
+
readonly unsupportedChart: "不支持的图表";
|
|
2237
|
+
readonly unsupportedChartDesc: "当前图表类型 \"{{type}}\" 暂未实现,请检查图表类型是否正确。";
|
|
2238
|
+
readonly previewEdit: "预览编辑";
|
|
2239
|
+
readonly copy: "复制";
|
|
2240
|
+
readonly continueText: "继续";
|
|
2241
|
+
readonly noVariables: "暂无可用变量";
|
|
2242
|
+
readonly dateToday: "今天";
|
|
2243
|
+
readonly dateLast7Days: "最近 7 天";
|
|
2244
|
+
readonly dateLast30Days: "最近 30 天";
|
|
2245
|
+
readonly dateLastHalfYear: "最近半年";
|
|
2246
|
+
readonly dateEarlier: "更早";
|
|
2247
|
+
readonly previewNotSupported: "当前环境不支持预览";
|
|
2248
|
+
readonly deleteSuccess: "删除成功";
|
|
2249
|
+
readonly operationBlocked: "操作被阻止";
|
|
2250
|
+
readonly favoriteSuccess: "收藏成功";
|
|
2251
|
+
readonly unfavoriteSuccess: "已取消收藏";
|
|
2252
|
+
readonly feedbackThanks: "感谢您的反馈";
|
|
2253
|
+
readonly sendFailed: "发送失败,请重试";
|
|
2254
|
+
readonly newConversationTitle: "新会话";
|
|
2255
|
+
readonly stopped: "已停止";
|
|
2256
|
+
readonly greetingHello: "你好,我是";
|
|
2257
|
+
readonly greetingSubtitle: "今天想探索点什么?";
|
|
2258
|
+
readonly disclaimer: "内容由AI生成,仅供参考,请仔细甄别";
|
|
2259
|
+
readonly helloIam: "你好,我是{{name}}";
|
|
2260
|
+
readonly newConversation: "新建会话";
|
|
2261
|
+
readonly uploadFromLocal: "从本地上传";
|
|
2262
|
+
readonly edit: "编辑";
|
|
2263
|
+
readonly noUserInputFields: "暂无用户输入字段";
|
|
2264
|
+
readonly startConversation: "开始会话";
|
|
2265
|
+
};
|
|
2266
|
+
|
|
2267
|
+
export { type AgentConfig, type AgentExecMode, type AgentInfo, type AgentSpec, _default$1 as Attachments, type AttachmentsProps, type ChatConfig, _default as ChatCopilot, type ChatHandle, type ChatHooks, type ChatLayout, type ChatParams, type ChatProps, _default$2 as ChatSender, type ChatServices, type ConversationMessage, type ConversationMessageSend, type ConversationStrategy, type CustomButtonProps, type FileTextType, type FileUploadConfig, type FileUrlType, type InputFile, type MessageRenderProps, NS_CHAT_COPILOT, type ReferencesType, type RequestInstance, type SenderProps, WorkspaceTypeEnum, chatCopilotEnUS, chatCopilotJaJP, chatCopilotZhCN, getFileIcon, getFileUrl };
|