panel.tsx 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. import type { FC } from 'react'
  2. import React from 'react'
  3. import { useTranslation } from 'react-i18next'
  4. import MemoryConfig from '../_base/components/memory-config'
  5. import VarReferencePicker from '../_base/components/variable/var-reference-picker'
  6. import ConfigVision from '../_base/components/config-vision'
  7. import useConfig from './use-config'
  8. import type { LLMNodeType } from './types'
  9. import ConfigPrompt from './components/config-prompt'
  10. import VarList from '@/app/components/workflow/nodes/_base/components/variable/var-list'
  11. import AddButton2 from '@/app/components/base/button/add-button'
  12. import Field from '@/app/components/workflow/nodes/_base/components/field'
  13. import Split from '@/app/components/workflow/nodes/_base/components/split'
  14. import ModelParameterModal from '@/app/components/header/account-setting/model-provider-page/model-parameter-modal'
  15. import OutputVars, { VarItem } from '@/app/components/workflow/nodes/_base/components/output-vars'
  16. import { InputVarType, type NodePanelProps } from '@/app/components/workflow/types'
  17. import BeforeRunForm from '@/app/components/workflow/nodes/_base/components/before-run-form'
  18. import type { Props as FormProps } from '@/app/components/workflow/nodes/_base/components/before-run-form/form'
  19. import ResultPanel from '@/app/components/workflow/run/result-panel'
  20. import Tooltip from '@/app/components/base/tooltip'
  21. import Editor from '@/app/components/workflow/nodes/_base/components/prompt/editor'
  22. const i18nPrefix = 'workflow.nodes.llm'
  23. const Panel: FC<NodePanelProps<LLMNodeType>> = ({
  24. id,
  25. data,
  26. }) => {
  27. const { t } = useTranslation()
  28. const {
  29. readOnly,
  30. inputs,
  31. isChatModel,
  32. isChatMode,
  33. isCompletionModel,
  34. shouldShowContextTip,
  35. isVisionModel,
  36. handleModelChanged,
  37. hasSetBlockStatus,
  38. handleCompletionParamsChange,
  39. handleContextVarChange,
  40. filterInputVar,
  41. filterVar,
  42. availableVars,
  43. availableNodesWithParent,
  44. isShowVars,
  45. handlePromptChange,
  46. handleAddEmptyVariable,
  47. handleAddVariable,
  48. handleVarListChange,
  49. handleVarNameChange,
  50. handleSyeQueryChange,
  51. handleMemoryChange,
  52. handleVisionResolutionEnabledChange,
  53. handleVisionResolutionChange,
  54. isShowSingleRun,
  55. hideSingleRun,
  56. inputVarValues,
  57. setInputVarValues,
  58. visionFiles,
  59. setVisionFiles,
  60. contexts,
  61. setContexts,
  62. runningStatus,
  63. handleRun,
  64. handleStop,
  65. varInputs,
  66. runResult,
  67. } = useConfig(id, data)
  68. const model = inputs.model
  69. const singleRunForms = (() => {
  70. const forms: FormProps[] = []
  71. if (varInputs.length > 0) {
  72. forms.push(
  73. {
  74. label: t(`${i18nPrefix}.singleRun.variable`)!,
  75. inputs: varInputs,
  76. values: inputVarValues,
  77. onChange: setInputVarValues,
  78. },
  79. )
  80. }
  81. if (inputs.context?.variable_selector && inputs.context?.variable_selector.length > 0) {
  82. forms.push(
  83. {
  84. label: t(`${i18nPrefix}.context`)!,
  85. inputs: [{
  86. label: '',
  87. variable: '#context#',
  88. type: InputVarType.contexts,
  89. required: false,
  90. }],
  91. values: { '#context#': contexts },
  92. onChange: keyValue => setContexts((keyValue as any)['#context#']),
  93. },
  94. )
  95. }
  96. if (isVisionModel) {
  97. const variableName = data.vision.configs?.variable_selector?.[1] || t(`${i18nPrefix}.files`)!
  98. forms.push(
  99. {
  100. label: t(`${i18nPrefix}.vision`)!,
  101. inputs: [{
  102. label: variableName!,
  103. variable: '#files#',
  104. type: InputVarType.files,
  105. required: false,
  106. }],
  107. values: { '#files#': visionFiles },
  108. onChange: keyValue => setVisionFiles((keyValue as any)['#files#']),
  109. },
  110. )
  111. }
  112. return forms
  113. })()
  114. return (
  115. <div className='mt-2'>
  116. <div className='px-4 pb-4 space-y-4'>
  117. <Field
  118. title={t(`${i18nPrefix}.model`)}
  119. >
  120. <ModelParameterModal
  121. popupClassName='!w-[387px]'
  122. isInWorkflow
  123. isAdvancedMode={true}
  124. mode={model?.mode}
  125. provider={model?.provider}
  126. completionParams={model?.completion_params}
  127. modelId={model?.name}
  128. setModel={handleModelChanged}
  129. onCompletionParamsChange={handleCompletionParamsChange}
  130. hideDebugWithMultipleModel
  131. debugWithMultipleModel={false}
  132. readonly={readOnly}
  133. />
  134. </Field>
  135. {/* knowledge */}
  136. <Field
  137. title={t(`${i18nPrefix}.context`)}
  138. tooltip={t(`${i18nPrefix}.contextTooltip`)!}
  139. >
  140. <>
  141. <VarReferencePicker
  142. readonly={readOnly}
  143. nodeId={id}
  144. isShowNodeName
  145. value={inputs.context?.variable_selector || []}
  146. onChange={handleContextVarChange}
  147. filterVar={filterVar}
  148. />
  149. {shouldShowContextTip && (
  150. <div className='leading-[18px] text-xs font-normal text-[#DC6803]'>{t(`${i18nPrefix}.notSetContextInPromptTip`)}</div>
  151. )}
  152. </>
  153. </Field>
  154. {/* Prompt */}
  155. {model.name && (
  156. <ConfigPrompt
  157. readOnly={readOnly}
  158. nodeId={id}
  159. filterVar={filterInputVar}
  160. isChatModel={isChatModel}
  161. isChatApp={isChatMode}
  162. isShowContext
  163. payload={inputs.prompt_template}
  164. onChange={handlePromptChange}
  165. hasSetBlockStatus={hasSetBlockStatus}
  166. varList={inputs.prompt_config?.jinja2_variables || []}
  167. handleAddVariable={handleAddVariable}
  168. modelConfig={model}
  169. />
  170. )}
  171. {isShowVars && (
  172. <Field
  173. title={t('workflow.nodes.templateTransform.inputVars')}
  174. operations={
  175. !readOnly ? <AddButton2 onClick={handleAddEmptyVariable} /> : undefined
  176. }
  177. >
  178. <VarList
  179. nodeId={id}
  180. readonly={readOnly}
  181. list={inputs.prompt_config?.jinja2_variables || []}
  182. onChange={handleVarListChange}
  183. onVarNameChange={handleVarNameChange}
  184. filterVar={filterVar}
  185. />
  186. </Field>
  187. )}
  188. {/* Memory put place examples. */}
  189. {isChatMode && isChatModel && !!inputs.memory && (
  190. <div className='mt-4'>
  191. <div className='flex justify-between items-center h-8 pl-3 pr-2 rounded-lg bg-gray-100'>
  192. <div className='flex items-center space-x-1'>
  193. <div className='text-xs font-semibold text-gray-700 uppercase'>{t('workflow.nodes.common.memories.title')}</div>
  194. <Tooltip
  195. popupContent={t('workflow.nodes.common.memories.tip')}
  196. triggerClassName='w-4 h-4'
  197. />
  198. </div>
  199. <div className='flex items-center h-[18px] px-1 rounded-[5px] border border-black/8 text-xs font-semibold text-gray-500 uppercase'>{t('workflow.nodes.common.memories.builtIn')}</div>
  200. </div>
  201. {/* Readonly User Query */}
  202. <div className='mt-4'>
  203. <Editor
  204. title={<div className='flex items-center space-x-1'>
  205. <div className='text-xs font-semibold text-gray-700 uppercase'>user</div>
  206. <Tooltip
  207. popupContent={
  208. <div className='max-w-[180px]'>{t('workflow.nodes.llm.roleDescription.user')}</div>
  209. }
  210. triggerClassName='w-4 h-4'
  211. />
  212. </div>}
  213. value={inputs.memory.query_prompt_template || '{{#sys.query#}}'}
  214. onChange={handleSyeQueryChange}
  215. readOnly={readOnly}
  216. isShowContext={false}
  217. isChatApp
  218. isChatModel
  219. hasSetBlockStatus={hasSetBlockStatus}
  220. nodesOutputVars={availableVars}
  221. availableNodes={availableNodesWithParent}
  222. />
  223. {inputs.memory.query_prompt_template && !inputs.memory.query_prompt_template.includes('{{#sys.query#}}') && (
  224. <div className='leading-[18px] text-xs font-normal text-[#DC6803]'>{t(`${i18nPrefix}.sysQueryInUser`)}</div>
  225. )}
  226. </div>
  227. </div>
  228. )}
  229. {/* Memory */}
  230. {isChatMode && (
  231. <>
  232. <Split />
  233. <MemoryConfig
  234. readonly={readOnly}
  235. config={{ data: inputs.memory }}
  236. onChange={handleMemoryChange}
  237. canSetRoleName={isCompletionModel}
  238. />
  239. </>
  240. )}
  241. {/* Vision: GPT4-vision and so on */}
  242. <ConfigVision
  243. nodeId={id}
  244. readOnly={readOnly}
  245. isVisionModel={isVisionModel}
  246. enabled={inputs.vision?.enabled}
  247. onEnabledChange={handleVisionResolutionEnabledChange}
  248. config={inputs.vision?.configs}
  249. onConfigChange={handleVisionResolutionChange}
  250. />
  251. </div>
  252. <Split />
  253. <div className='px-4 pt-4 pb-2'>
  254. <OutputVars>
  255. <>
  256. <VarItem
  257. name='text'
  258. type='string'
  259. description={t(`${i18nPrefix}.outputVars.output`)}
  260. />
  261. </>
  262. </OutputVars>
  263. </div>
  264. {isShowSingleRun && (
  265. <BeforeRunForm
  266. nodeName={inputs.title}
  267. onHide={hideSingleRun}
  268. forms={singleRunForms}
  269. runningStatus={runningStatus}
  270. onRun={handleRun}
  271. onStop={handleStop}
  272. result={<ResultPanel {...runResult} showSteps={false} />}
  273. />
  274. )}
  275. </div>
  276. )
  277. }
  278. export default React.memo(Panel)