panel.tsx 9.7 KB

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