mirror of
https://github.com/langgenius/dify.git
synced 2026-04-09 18:08:09 +08:00
115 lines
3.2 KiB
TypeScript
115 lines
3.2 KiB
TypeScript
import type { FC } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import useConfig from './use-config'
|
|
import { mockData } from './mock'
|
|
import VarList from '@/app/components/workflow/nodes/_base/components/variable/var-list'
|
|
import Field from '@/app/components/workflow/nodes/_base/components/field'
|
|
import AddButton from '@/app/components/base/button/add-button'
|
|
import Split from '@/app/components/workflow/nodes/_base/components/split'
|
|
import ModelParameterModal from '@/app/components/header/account-setting/model-provider-page/model-parameter-modal'
|
|
import Switch from '@/app/components/base/switch'
|
|
import OutputVars, { VarItem } from '@/app/components/workflow/nodes/_base/components/output-vars'
|
|
|
|
const i18nPrefix = 'workflow.nodes.llm'
|
|
|
|
const Panel: FC = () => {
|
|
const { t } = useTranslation()
|
|
const readOnly = false
|
|
|
|
const {
|
|
inputs,
|
|
handleModelChanged,
|
|
handleCompletionParamsChange,
|
|
handleVarListChange,
|
|
handleAddVariable,
|
|
toggleContextEnabled,
|
|
} = useConfig(mockData)
|
|
const model = inputs.model
|
|
// const modelMode = inputs.model?.mode
|
|
// const isChatMode = modelMode === 'chat'
|
|
|
|
return (
|
|
<div className='mt-2'>
|
|
<div className='px-4 pb-4 space-y-4'>
|
|
<Field
|
|
title={t(`${i18nPrefix}.model`)}
|
|
>
|
|
<ModelParameterModal
|
|
popupClassName='!w-[387px]'
|
|
isAdvancedMode={true}
|
|
mode={model?.mode}
|
|
provider={model?.provider}
|
|
completionParams={model.completion_params}
|
|
modelId={model.name}
|
|
setModel={handleModelChanged}
|
|
onCompletionParamsChange={handleCompletionParamsChange}
|
|
hideDebugWithMultipleModel
|
|
debugWithMultipleModel={false}
|
|
/>
|
|
</Field>
|
|
|
|
<Field
|
|
title={t(`${i18nPrefix}.variables`)}
|
|
operations={
|
|
<AddButton onClick={handleAddVariable} />
|
|
}
|
|
>
|
|
<VarList
|
|
readonly={readOnly}
|
|
list={inputs.variables}
|
|
onChange={handleVarListChange}
|
|
/>
|
|
</Field>
|
|
|
|
<Field
|
|
title={t(`${i18nPrefix}.context`)}
|
|
operations={
|
|
<Switch
|
|
defaultValue={inputs.context.enabled}
|
|
onChange={toggleContextEnabled}
|
|
size='md'
|
|
/>
|
|
}
|
|
>
|
|
{inputs.context.enabled
|
|
? (
|
|
<div>Context</div>
|
|
)
|
|
: null}
|
|
</Field>
|
|
<Field
|
|
title={t(`${i18nPrefix}.prompt`)}
|
|
>
|
|
Prompt
|
|
</Field>
|
|
<Split />
|
|
<Field
|
|
title={t(`${i18nPrefix}.vision`)}
|
|
inline
|
|
>
|
|
Vision
|
|
</Field>
|
|
</div>
|
|
<Split />
|
|
<div className='px-4 pt-4 pb-2'>
|
|
<OutputVars>
|
|
<>
|
|
<VarItem
|
|
name='output'
|
|
type='string'
|
|
description={t(`${i18nPrefix}.outputVars.output`)}
|
|
/>
|
|
<VarItem
|
|
name='usage'
|
|
type='object'
|
|
description={t(`${i18nPrefix}.outputVars.usage`)}
|
|
/>
|
|
</>
|
|
</OutputVars>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Panel
|