mirror of
https://github.com/langgenius/dify.git
synced 2026-01-08 07:14:14 +00:00
19 lines
322 B
TypeScript
19 lines
322 B
TypeScript
import type { FC } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import BaseNode from '../_base/node'
|
|
const i18nPrefix = 'workflow.nodes.llm'
|
|
|
|
const Node: FC = () => {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<BaseNode>
|
|
<div>
|
|
llm
|
|
</div>
|
|
</BaseNode>
|
|
)
|
|
}
|
|
|
|
export default Node
|