Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const createImageCaptionChildNodeResponse = ({
requestIds,
usage,
seconds,
moduleName: i18nT('account_usage:image_parse'),
moduleName: i18nT('chat:image_parse'),
textOutput: queries.join('\n')
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ describe('dispatchAgentDatasetSearch', () => {
expect(result.nodeResponse?.childrenResponses).toEqual([
expect.objectContaining({
id: 'req_image_caption',
moduleName: 'account_usage:image_parse',
moduleName: 'chat:image_parse',
llmRequestIds: ['req_image_caption'],
totalPoints: 0.12,
textOutput: 'image caption'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ describe('dispatchDatasetSearch', () => {
id: 'req_image_caption_1',
nodeId: 'req_image_caption_1',
moduleType: FlowNodeTypeEnum.datasetSearchNode,
moduleName: 'account_usage:image_parse',
moduleName: 'chat:image_parse',
moduleLogo: 'core/workflow/template/datasetSearch',
runningTime: 1.5,
model: 'gpt-vision name',
Expand Down
1 change: 1 addition & 0 deletions packages/web/i18n/en/chat.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
"home.chat_app": "HomeChat-{{name}}",
"home.select_tools": "Select Tool",
"home.tools": "Tool: {{num}}",
"image_parse": "Image parsing",
"in_progress": "In Progress",
"input_guide": "Input Guide",
"input_placeholder_phone": "Please enter your question",
Expand Down
1 change: 1 addition & 0 deletions packages/web/i18n/zh-CN/chat.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
"home.chat_app": "首页聊天",
"home.select_tools": "选择工具",
"home.tools": "工具:{{num}}",
"image_parse": "图片解析",
"in_progress": "进行中",
"input_guide": "输入引导",
"input_placeholder_phone": "发消息给FastGPT",
Expand Down
1 change: 1 addition & 0 deletions packages/web/i18n/zh-Hant/chat.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
"home.chat_app": "首页聊天",
"home.select_tools": "選擇工具",
"home.tools": "工具:{{num}}",
"image_parse": "圖片解析",
"in_progress": "進行中",
"input_guide": "輸入導引",
"input_placeholder_phone": "請輸入問題",
Expand Down
Loading