mirror of https://github.com/langgenius/dify.git
66 lines
2.0 KiB
TypeScript
66 lines
2.0 KiB
TypeScript
import { useCallback, useState } from 'react'
|
|
import produce from 'immer'
|
|
import type { Memory, ValueSelector } from '../../types'
|
|
import type { QuestionClassifierNodeType } from './types'
|
|
|
|
const useConfig = (initInputs: QuestionClassifierNodeType) => {
|
|
const [inputs, setInputs] = useState<QuestionClassifierNodeType>(initInputs)
|
|
|
|
// model
|
|
const handleModelChanged = useCallback((model: { provider: string; modelId: string; mode?: string }) => {
|
|
const newInputs = produce(inputs, (draft) => {
|
|
draft.model.provider = model.provider
|
|
draft.model.name = model.modelId
|
|
draft.model.mode = model.mode!
|
|
})
|
|
setInputs(newInputs)
|
|
}, [inputs, setInputs])
|
|
|
|
const handleCompletionParamsChange = useCallback((newParams: Record<string, any>) => {
|
|
const newInputs = produce(inputs, (draft) => {
|
|
draft.model.completion_params = newParams
|
|
})
|
|
setInputs(newInputs)
|
|
}, [inputs, setInputs])
|
|
|
|
const handleQueryVarChange = useCallback((newVar: ValueSelector) => {
|
|
const newInputs = produce(inputs, (draft) => {
|
|
draft.query_variable_selector = newVar
|
|
})
|
|
setInputs(newInputs)
|
|
}, [inputs, setInputs])
|
|
|
|
const handleTopicsChange = useCallback((newTopics: any) => {
|
|
const newInputs = produce(inputs, (draft) => {
|
|
draft.topics = newTopics
|
|
})
|
|
setInputs(newInputs)
|
|
}, [inputs, setInputs])
|
|
|
|
const handleInstructionChange = useCallback((instruction: string) => {
|
|
const newInputs = produce(inputs, (draft) => {
|
|
draft.instruction = instruction
|
|
})
|
|
setInputs(newInputs)
|
|
}, [inputs, setInputs])
|
|
|
|
const handleMemoryChange = useCallback((memory: Memory) => {
|
|
const newInputs = produce(inputs, (draft) => {
|
|
draft.memory = memory
|
|
})
|
|
setInputs(newInputs)
|
|
}, [inputs, setInputs])
|
|
|
|
return {
|
|
inputs,
|
|
handleModelChanged,
|
|
handleCompletionParamsChange,
|
|
handleQueryVarChange,
|
|
handleTopicsChange,
|
|
handleInstructionChange,
|
|
handleMemoryChange,
|
|
}
|
|
}
|
|
|
|
export default useConfig
|