mirror of
https://github.com/langgenius/dify.git
synced 2026-05-03 00:48:04 +08:00
datasource list
This commit is contained in:
31
web/app/components/workflow/block-selector/utils.ts
Normal file
31
web/app/components/workflow/block-selector/utils.ts
Normal file
@ -0,0 +1,31 @@
|
||||
import { CollectionType } from '@/app/components/tools/types'
|
||||
import type { Tool } from '@/app/components/tools/types'
|
||||
import type { DataSourceItem } from './types'
|
||||
|
||||
export const transformDataSourceToTool = (dataSourceItem: DataSourceItem) => {
|
||||
return {
|
||||
id: dataSourceItem.plugin_unique_identifier,
|
||||
name: dataSourceItem.declaration.identity.name,
|
||||
author: dataSourceItem.declaration.identity.author,
|
||||
description: dataSourceItem.declaration.identity.description,
|
||||
icon: dataSourceItem.declaration.identity.icon,
|
||||
label: dataSourceItem.declaration.identity.label,
|
||||
type: CollectionType.datasource,
|
||||
team_credentials: {},
|
||||
is_team_authorization: false,
|
||||
allow_delete: true,
|
||||
labels: dataSourceItem.declaration.identity.tags || [],
|
||||
plugin_id: dataSourceItem.plugin_id,
|
||||
tools: dataSourceItem.declaration.datasources.map((datasource) => {
|
||||
return {
|
||||
name: datasource.identity.name,
|
||||
author: datasource.identity.author,
|
||||
label: datasource.identity.label,
|
||||
description: datasource.description,
|
||||
parameters: datasource.parameters,
|
||||
labels: [],
|
||||
output_schema: {},
|
||||
} as Tool
|
||||
}),
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user