mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 21:13:50 +00:00

* perf: watch local * perf: dataset list ui * perf: Check workflow invalid edges in saved * remove log * perf: Forbid touch scale * perf: rename dataset process * feat: support child app unstream mode * feat: Dispatch child app will record detail * feat: Save childApp run log * fix: share page init error * perf: chatId reset
23 lines
770 B
TypeScript
23 lines
770 B
TypeScript
import { PluginRuntimeType } from '@fastgpt/global/core/workflow/runtime/type';
|
|
import { ChatNodeUsageType } from '@fastgpt/global/support/wallet/bill/type';
|
|
import { splitCombinePluginId } from './controller';
|
|
import { PluginSourceEnum } from '@fastgpt/global/core/plugin/constants';
|
|
|
|
/*
|
|
1. Commercial plugin: n points per times
|
|
2. Other plugin: sum of children points
|
|
*/
|
|
export const computedPluginUsage = async (
|
|
plugin: PluginRuntimeType,
|
|
childrenUsage: ChatNodeUsageType[]
|
|
) => {
|
|
const { source } = await splitCombinePluginId(plugin.id);
|
|
|
|
// Commercial plugin: n points per times
|
|
if (source === PluginSourceEnum.commercial) {
|
|
return plugin.currentCost ?? 0;
|
|
}
|
|
|
|
return childrenUsage.reduce((sum, item) => sum + (item.totalPoints || 0), 0);
|
|
};
|