mirror of
https://github.com/langgenius/dify.git
synced 2026-01-14 06:07:33 +08:00
79 lines
2.7 KiB
TypeScript
79 lines
2.7 KiB
TypeScript
import type { LLMNodeType } from '@/app/components/workflow/nodes/llm/types'
|
|
import type { ToolNodeType } from '@/app/components/workflow/nodes/tool/types'
|
|
import type { TryAppInfo } from '@/service/try-app'
|
|
import type { AgentTool } from '@/types/app'
|
|
import { uniqBy } from 'es-toolkit/compat'
|
|
import { BlockEnum } from '@/app/components/workflow/types'
|
|
import { MARKETPLACE_API_PREFIX } from '@/config'
|
|
import { useGetTryAppFlowPreview } from '@/service/use-try-app'
|
|
|
|
type Params = {
|
|
appDetail: TryAppInfo
|
|
appId: string
|
|
}
|
|
|
|
type RequirementItem = {
|
|
name: string
|
|
iconUrl: string
|
|
}
|
|
const getIconUrl = (provider: string, tool: string) => {
|
|
return `${MARKETPLACE_API_PREFIX}/plugins/${provider}/${tool}/icon`
|
|
}
|
|
|
|
const useGetRequirements = ({ appDetail, appId }: Params) => {
|
|
const isBasic = ['chat', 'completion', 'agent-chat'].includes(appDetail.mode)
|
|
const isAgent = appDetail.mode === 'agent-chat'
|
|
const isAdvanced = !isBasic
|
|
const { data: flowData } = useGetTryAppFlowPreview(appId, isBasic)
|
|
|
|
const requirements: RequirementItem[] = []
|
|
if (isBasic) {
|
|
const modelProviderAndName = appDetail.model_config.model.provider.split('/')
|
|
const name = appDetail.model_config.model.provider.split('/').pop() || ''
|
|
requirements.push({
|
|
name,
|
|
iconUrl: getIconUrl(modelProviderAndName[0], modelProviderAndName[1]),
|
|
})
|
|
}
|
|
if (isAgent) {
|
|
requirements.push(...appDetail.model_config.agent_mode.tools.filter(data => (data as AgentTool).enabled).map((data) => {
|
|
const tool = data as AgentTool
|
|
const modelProviderAndName = tool.provider_id.split('/')
|
|
return {
|
|
name: tool.tool_label,
|
|
iconUrl: getIconUrl(modelProviderAndName[0], modelProviderAndName[1]),
|
|
}
|
|
}))
|
|
}
|
|
if (isAdvanced && flowData && flowData?.graph?.nodes?.length > 0) {
|
|
const nodes = flowData.graph.nodes
|
|
const llmNodes = nodes.filter(node => node.data.type === BlockEnum.LLM)
|
|
requirements.push(...llmNodes.map((node) => {
|
|
const data = node.data as LLMNodeType
|
|
const modelProviderAndName = data.model.provider.split('/')
|
|
return {
|
|
name: data.model.name,
|
|
iconUrl: getIconUrl(modelProviderAndName[0], modelProviderAndName[1]),
|
|
}
|
|
}))
|
|
|
|
const toolNodes = nodes.filter(node => node.data.type === BlockEnum.Tool)
|
|
requirements.push(...toolNodes.map((node) => {
|
|
const data = node.data as ToolNodeType
|
|
const toolProviderAndName = data.provider_id.split('/')
|
|
return {
|
|
name: data.tool_label,
|
|
iconUrl: getIconUrl(toolProviderAndName[0], toolProviderAndName[1]),
|
|
}
|
|
}))
|
|
}
|
|
|
|
const uniqueRequirements = uniqBy(requirements, 'name')
|
|
|
|
return {
|
|
requirements: uniqueRequirements,
|
|
}
|
|
}
|
|
|
|
export default useGetRequirements
|