-
- Model Selector
-
-
- }
- >
- Var Selector
-
+ llm
)
diff --git a/web/app/components/workflow/nodes/llm/panel.tsx b/web/app/components/workflow/nodes/llm/panel.tsx
index ca61bbcc67..7efbd99308 100644
--- a/web/app/components/workflow/nodes/llm/panel.tsx
+++ b/web/app/components/workflow/nodes/llm/panel.tsx
@@ -1,10 +1,32 @@
import type { FC } from 'react'
+import { useTranslation } from 'react-i18next'
import BasePanel from '../_base/panel'
+import Field from '@/app/components/workflow/nodes/_base/components/field'
+import AddButton from '@/app/components/base/button/add-button'
+const i18nPrefix = 'workflow.nodes.llm'
const Panel: FC = () => {
+ const { t } = useTranslation()
+ const handleAddVariable = () => {
+ console.log('add variable')
+ }
return (