mirror of
https://github.com/labring/FastGPT.git
synced 2025-10-18 09:24:03 +00:00

* add logs chart (#5352) * charts * chart data * log chart * delete * rename api * fix * move api * fix * fix * pro config * fix * feat: Repository interaction (#5356) * feat: 1好像功能没问题了,明天再测 * feat: 2 解决了昨天遗留的bug,但全选按钮又bug了 * feat: 3 第三版,解决了全选功能bug * feat: 4 第四版,下面改小细节 * feat: 5 我勒个痘 * feat: 6 * feat: 6 pr * feat: 7 * feat: 8 * feat: 9 * feat: 10 * feat: 11 * feat: 12 * perf: checkbox ui * refactor: tweak login loyout (#5357) Co-authored-by: Archer <545436317@qq.com> * login ui * app chat log chart pro display (#5392) * app chat log chart pro display * add canopen props * perf: pro tag tip * perf: pro tag tip * feat: openrouter provider (#5406) * perf: login ui * feat: openrouter provider * provider * perf: custom error throw * perf: emb batch (#5407) * perf: emb batch * perf: vector retry * doc * doc (#5411) * doc * fix: team folder will add to workflow * fix: generateToc shell * Tool price (#5376) * resolve conflicts for cherry-pick * fix i18n * Enhance system plugin template data structure and update ToolSelectModal to include CostTooltip component * refactor: update systemKeyCost type to support array of objects in plugin and workflow types * refactor: simplify systemKeyCost type across plugin and workflow types to a single number * refactor: streamline systemKeyCost handling in plugin and workflow components * fix * fix * perf: toolset price config;fix: workflow array selector ui (#5419) * fix: workflow array selector ui * update default model tip * perf: toolset price config * doc * fix: test * Refactor/chat (#5418) * refactor: add homepage configuration; add home chat page; add side bar animated collapse and layout * fix: fix lint rules * chore: improve logics and code * chore: more clearer logics * chore: adjust api --------- Co-authored-by: Archer <545436317@qq.com> * perf: chat setting code * del history * logo image * perf: home chat ui * feat: enhance chat response handling with external links and user info (#5427) * feat: enhance chat response handling with external links and user info * fix * cite code * perf: toolset add in workflow * fix: test * fix: search paraentId * Fix/chat (#5434) * wip: rebase了upstream * wip: adapt mobile UI * fix: fix chat page logic and UI * fix: fix UI and improve some logics * fix: model selector missing logo; vision model to retrieve file * perf: role selector * fix: chat ui * optimize export app chat log (#5436) * doc * chore: move components to proper directory; fix the api to get app list (#5437) * chore: improve team app panel display form (#5438) * feat: add home chat log tab * chore: improve team app panel display form * chore: improve log panel * fix: spec * doc * fix: log permission * fix: dataset schema required * add loading status * remove ui weight * manage log * fix: log detail per * doc * fix: log menu * rename permission * bg color * fix: app log per * fix: log key selector * fix: log * doc --------- Co-authored-by: heheer <zhiyu44@qq.com> Co-authored-by: colnii <1286949794@qq.com> Co-authored-by: 伍闲犬 <76519998+xqvvu@users.noreply.github.com> Co-authored-by: Ctrlz <143257420+ctrlz526@users.noreply.github.com> Co-authored-by: 伍闲犬 <whoeverimf5@gmail.com> Co-authored-by: heheer <heheer@sealos.io>
337 lines
7.2 KiB
TypeScript
337 lines
7.2 KiB
TypeScript
import { i18nT } from '../../../../web/i18n/utils';
|
|
|
|
export enum AppLogKeysEnum {
|
|
SOURCE = 'source',
|
|
USER = 'user',
|
|
TITLE = 'title',
|
|
SESSION_ID = 'sessionId',
|
|
CREATED_TIME = 'createdTime',
|
|
LAST_CONVERSATION_TIME = 'lastConversationTime',
|
|
MESSAGE_COUNT = 'messageCount',
|
|
FEEDBACK = 'feedback',
|
|
CUSTOM_FEEDBACK = 'customFeedback',
|
|
ANNOTATED_COUNT = 'annotatedCount',
|
|
POINTS = 'points',
|
|
RESPONSE_TIME = 'responseTime',
|
|
ERROR_COUNT = 'errorCount'
|
|
}
|
|
|
|
export const AppLogKeysEnumMap = {
|
|
[AppLogKeysEnum.SOURCE]: i18nT('app:logs_keys_source'),
|
|
[AppLogKeysEnum.USER]: i18nT('app:logs_keys_user'),
|
|
[AppLogKeysEnum.TITLE]: i18nT('app:logs_keys_title'),
|
|
[AppLogKeysEnum.SESSION_ID]: i18nT('app:logs_keys_sessionId'),
|
|
[AppLogKeysEnum.CREATED_TIME]: i18nT('app:logs_keys_createdTime'),
|
|
[AppLogKeysEnum.LAST_CONVERSATION_TIME]: i18nT('app:logs_keys_lastConversationTime'),
|
|
[AppLogKeysEnum.MESSAGE_COUNT]: i18nT('app:logs_keys_messageCount'),
|
|
[AppLogKeysEnum.FEEDBACK]: i18nT('app:logs_keys_feedback'),
|
|
[AppLogKeysEnum.CUSTOM_FEEDBACK]: i18nT('app:logs_keys_customFeedback'),
|
|
[AppLogKeysEnum.ANNOTATED_COUNT]: i18nT('app:logs_keys_annotatedCount'),
|
|
[AppLogKeysEnum.POINTS]: i18nT('app:logs_keys_points'),
|
|
[AppLogKeysEnum.RESPONSE_TIME]: i18nT('app:logs_keys_responseTime'),
|
|
[AppLogKeysEnum.ERROR_COUNT]: i18nT('app:logs_keys_errorCount')
|
|
};
|
|
|
|
export const DefaultAppLogKeys = [
|
|
{ key: AppLogKeysEnum.SOURCE, enable: true },
|
|
{ key: AppLogKeysEnum.USER, enable: true },
|
|
{ key: AppLogKeysEnum.TITLE, enable: true },
|
|
{ key: AppLogKeysEnum.SESSION_ID, enable: false },
|
|
{ key: AppLogKeysEnum.CREATED_TIME, enable: false },
|
|
{ key: AppLogKeysEnum.LAST_CONVERSATION_TIME, enable: true },
|
|
{ key: AppLogKeysEnum.MESSAGE_COUNT, enable: true },
|
|
{ key: AppLogKeysEnum.FEEDBACK, enable: true },
|
|
{ key: AppLogKeysEnum.CUSTOM_FEEDBACK, enable: false },
|
|
{ key: AppLogKeysEnum.ANNOTATED_COUNT, enable: false },
|
|
{ key: AppLogKeysEnum.POINTS, enable: false },
|
|
{ key: AppLogKeysEnum.RESPONSE_TIME, enable: false },
|
|
{ key: AppLogKeysEnum.ERROR_COUNT, enable: false }
|
|
];
|
|
|
|
export enum AppLogTimespanEnum {
|
|
day = 'day',
|
|
week = 'week',
|
|
month = 'month',
|
|
quarter = 'quarter'
|
|
}
|
|
|
|
export const offsetOptions = [
|
|
{ label: 'T+1', value: '1' },
|
|
{ label: 'T+3', value: '3' },
|
|
{ label: 'T+7', value: '7' },
|
|
{ label: 'T+14', value: '14' }
|
|
];
|
|
|
|
export const fakeChartData = {
|
|
user: [
|
|
{
|
|
x: '07-30',
|
|
xLabel: '07-30',
|
|
userCount: 8,
|
|
newUserCount: 5,
|
|
retentionUserCount: 3,
|
|
points: 100,
|
|
sourceCountMap: {
|
|
test: 1,
|
|
online: 1,
|
|
share: 1,
|
|
api: 2,
|
|
cronJob: 0,
|
|
team: 1,
|
|
feishu: 0,
|
|
official_account: 1,
|
|
wecom: 1,
|
|
mcp: 0
|
|
}
|
|
},
|
|
{
|
|
x: '07-31',
|
|
xLabel: '07-31',
|
|
userCount: 12,
|
|
newUserCount: 8,
|
|
retentionUserCount: 4,
|
|
points: 160,
|
|
sourceCountMap: {
|
|
test: 2,
|
|
online: 2,
|
|
share: 2,
|
|
api: 3,
|
|
cronJob: 0,
|
|
team: 2,
|
|
feishu: 0,
|
|
official_account: 1,
|
|
wecom: 1,
|
|
mcp: 0
|
|
}
|
|
},
|
|
{
|
|
x: '08-01',
|
|
xLabel: '08-01',
|
|
userCount: 18,
|
|
newUserCount: 12,
|
|
retentionUserCount: 6,
|
|
points: 220,
|
|
sourceCountMap: {
|
|
test: 2,
|
|
online: 3,
|
|
share: 2,
|
|
api: 4,
|
|
cronJob: 1,
|
|
team: 2,
|
|
feishu: 0,
|
|
official_account: 1,
|
|
wecom: 1,
|
|
mcp: 0
|
|
}
|
|
},
|
|
{
|
|
x: '08-02',
|
|
xLabel: '08-02',
|
|
userCount: 15,
|
|
newUserCount: 7,
|
|
retentionUserCount: 8,
|
|
points: 180,
|
|
sourceCountMap: {
|
|
test: 1,
|
|
online: 2,
|
|
share: 2,
|
|
api: 3,
|
|
cronJob: 1,
|
|
team: 2,
|
|
feishu: 1,
|
|
official_account: 1,
|
|
wecom: 0,
|
|
mcp: 0
|
|
}
|
|
},
|
|
{
|
|
x: '08-03',
|
|
xLabel: '08-03',
|
|
userCount: 20,
|
|
newUserCount: 15,
|
|
retentionUserCount: 5,
|
|
points: 250,
|
|
sourceCountMap: {
|
|
test: 2,
|
|
online: 4,
|
|
share: 2,
|
|
api: 5,
|
|
cronJob: 1,
|
|
team: 2,
|
|
feishu: 1,
|
|
official_account: 1,
|
|
wecom: 0,
|
|
mcp: 0
|
|
}
|
|
},
|
|
{
|
|
x: '08-04',
|
|
xLabel: '08-04',
|
|
userCount: 14,
|
|
newUserCount: 6,
|
|
retentionUserCount: 8,
|
|
points: 170,
|
|
sourceCountMap: {
|
|
test: 1,
|
|
online: 3,
|
|
share: 1,
|
|
api: 4,
|
|
cronJob: 1,
|
|
team: 2,
|
|
feishu: 1,
|
|
official_account: 1,
|
|
wecom: 0,
|
|
mcp: 0
|
|
}
|
|
},
|
|
{
|
|
x: '08-05',
|
|
xLabel: '08-05',
|
|
userCount: 22,
|
|
newUserCount: 17,
|
|
retentionUserCount: 5,
|
|
points: 280,
|
|
sourceCountMap: {
|
|
test: 2,
|
|
online: 5,
|
|
share: 2,
|
|
api: 6,
|
|
cronJob: 1,
|
|
team: 2,
|
|
feishu: 1,
|
|
official_account: 1,
|
|
wecom: 0,
|
|
mcp: 0
|
|
}
|
|
}
|
|
],
|
|
chat: [
|
|
{
|
|
x: '07-30',
|
|
xLabel: '07-30',
|
|
chatItemCount: 20,
|
|
chatCount: 12,
|
|
pointsPerChat: 5.5,
|
|
errorCount: 2,
|
|
errorRate: 0.1
|
|
},
|
|
{
|
|
x: '07-31',
|
|
xLabel: '07-31',
|
|
chatItemCount: 35,
|
|
chatCount: 20,
|
|
pointsPerChat: 8.0,
|
|
errorCount: 1,
|
|
errorRate: 0.028
|
|
},
|
|
{
|
|
x: '08-01',
|
|
xLabel: '08-01',
|
|
chatItemCount: 50,
|
|
chatCount: 30,
|
|
pointsPerChat: 7.3,
|
|
errorCount: 3,
|
|
errorRate: 0.06
|
|
},
|
|
{
|
|
x: '08-02',
|
|
xLabel: '08-02',
|
|
chatItemCount: 28,
|
|
chatCount: 18,
|
|
pointsPerChat: 6.2,
|
|
errorCount: 1,
|
|
errorRate: 0.036
|
|
},
|
|
{
|
|
x: '08-03',
|
|
xLabel: '08-03',
|
|
chatItemCount: 60,
|
|
chatCount: 40,
|
|
pointsPerChat: 7.8,
|
|
errorCount: 4,
|
|
errorRate: 0.067
|
|
},
|
|
{
|
|
x: '08-04',
|
|
xLabel: '08-04',
|
|
chatItemCount: 32,
|
|
chatCount: 22,
|
|
pointsPerChat: 6.5,
|
|
errorCount: 2,
|
|
errorRate: 0.062
|
|
},
|
|
{
|
|
x: '08-05',
|
|
xLabel: '08-05',
|
|
chatItemCount: 55,
|
|
chatCount: 35,
|
|
pointsPerChat: 8.1,
|
|
errorCount: 1,
|
|
errorRate: 0.018
|
|
}
|
|
],
|
|
app: [
|
|
{
|
|
x: '07-30',
|
|
xLabel: '07-30',
|
|
goodFeedBackCount: 2,
|
|
badFeedBackCount: 1,
|
|
avgDuration: 2.5
|
|
},
|
|
{
|
|
x: '07-31',
|
|
xLabel: '07-31',
|
|
goodFeedBackCount: 5,
|
|
badFeedBackCount: 2,
|
|
avgDuration: 2.1
|
|
},
|
|
{
|
|
x: '08-01',
|
|
xLabel: '08-01',
|
|
goodFeedBackCount: 3,
|
|
badFeedBackCount: 1,
|
|
avgDuration: 2.8
|
|
},
|
|
{
|
|
x: '08-02',
|
|
xLabel: '08-02',
|
|
goodFeedBackCount: 6,
|
|
badFeedBackCount: 3,
|
|
avgDuration: 2.0
|
|
},
|
|
{
|
|
x: '08-03',
|
|
xLabel: '08-03',
|
|
goodFeedBackCount: 4,
|
|
badFeedBackCount: 2,
|
|
avgDuration: 2.7
|
|
},
|
|
{
|
|
x: '08-04',
|
|
xLabel: '08-04',
|
|
goodFeedBackCount: 7,
|
|
badFeedBackCount: 1,
|
|
avgDuration: 2.3
|
|
},
|
|
{
|
|
x: '08-05',
|
|
xLabel: '08-05',
|
|
goodFeedBackCount: 3,
|
|
badFeedBackCount: 2,
|
|
avgDuration: 2.9
|
|
}
|
|
],
|
|
cumulative: {
|
|
userCount: 109,
|
|
points: 1360,
|
|
chatItemCount: 280,
|
|
chatCount: 177,
|
|
pointsPerChat: 7.2,
|
|
errorCount: 14,
|
|
errorRate: 0.053,
|
|
goodFeedBackCount: 30,
|
|
badFeedBackCount: 12,
|
|
avgDuration: 2.47
|
|
}
|
|
};
|