mirror of https://github.com/langgenius/dify.git
49 lines
1.4 KiB
TypeScript
49 lines
1.4 KiB
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import type { AgentConfig } from '@/models/debug'
|
|
import { RiSettings2Line } from '@remixicon/react'
|
|
import * as React from 'react'
|
|
import { useState } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import Button from '@/app/components/base/button'
|
|
import AgentSetting from './agent/agent-setting'
|
|
|
|
type Props = {
|
|
isFunctionCall: boolean
|
|
isChatModel: boolean
|
|
agentConfig?: AgentConfig
|
|
onAgentSettingChange: (payload: AgentConfig) => void
|
|
}
|
|
|
|
const AgentSettingButton: FC<Props> = ({
|
|
onAgentSettingChange,
|
|
isFunctionCall,
|
|
isChatModel,
|
|
agentConfig,
|
|
}) => {
|
|
const { t } = useTranslation()
|
|
const [isShowAgentSetting, setIsShowAgentSetting] = useState(false)
|
|
|
|
return (
|
|
<>
|
|
<Button onClick={() => setIsShowAgentSetting(true)} className="mr-2 shrink-0">
|
|
<RiSettings2Line className="mr-1 h-4 w-4 text-text-tertiary" />
|
|
{t('agent.setting.name', { ns: 'appDebug' })}
|
|
</Button>
|
|
{isShowAgentSetting && (
|
|
<AgentSetting
|
|
isFunctionCall={isFunctionCall}
|
|
payload={agentConfig as AgentConfig}
|
|
isChatModel={isChatModel}
|
|
onSave={(payloadNew) => {
|
|
onAgentSettingChange(payloadNew)
|
|
setIsShowAgentSetting(false)
|
|
}}
|
|
onCancel={() => setIsShowAgentSetting(false)}
|
|
/>
|
|
)}
|
|
</>
|
|
)
|
|
}
|
|
export default React.memo(AgentSettingButton)
|