mirror of
https://github.com/langgenius/dify.git
synced 2026-03-06 15:45:14 +00:00
Compare commits
2 Commits
move-token
...
fix/knowle
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c1f513fcc1 | ||
|
|
a7859de625 |
@@ -194,10 +194,11 @@ export const Workflow: FC<WorkflowProps> = memo(({
|
|||||||
const { workflowReadOnly } = useWorkflowReadOnly()
|
const { workflowReadOnly } = useWorkflowReadOnly()
|
||||||
const { nodesReadOnly } = useNodesReadOnly()
|
const { nodesReadOnly } = useNodesReadOnly()
|
||||||
const { eventEmitter } = useEventEmitterContextContext()
|
const { eventEmitter } = useEventEmitterContextContext()
|
||||||
|
const store = useStoreApi()
|
||||||
eventEmitter?.useSubscription((v: any) => {
|
eventEmitter?.useSubscription((v: any) => {
|
||||||
if (v.type === WORKFLOW_DATA_UPDATE) {
|
if (v.type === WORKFLOW_DATA_UPDATE) {
|
||||||
setNodes(v.payload.nodes)
|
setNodes(v.payload.nodes)
|
||||||
|
store.getState().setNodes(v.payload.nodes)
|
||||||
setEdges(v.payload.edges)
|
setEdges(v.payload.edges)
|
||||||
|
|
||||||
if (v.payload.viewport)
|
if (v.payload.viewport)
|
||||||
@@ -359,7 +360,6 @@ export const Workflow: FC<WorkflowProps> = memo(({
|
|||||||
}
|
}
|
||||||
}, [schemaTypeDefinitions, fetchInspectVars, isLoadedVars, vars, customTools, buildInTools, workflowTools, mcpTools, dataSourceList])
|
}, [schemaTypeDefinitions, fetchInspectVars, isLoadedVars, vars, customTools, buildInTools, workflowTools, mcpTools, dataSourceList])
|
||||||
|
|
||||||
const store = useStoreApi()
|
|
||||||
if (process.env.NODE_ENV === 'development') {
|
if (process.env.NODE_ENV === 'development') {
|
||||||
store.getState().onError = (code, message) => {
|
store.getState().onError = (code, message) => {
|
||||||
if (code === '002')
|
if (code === '002')
|
||||||
|
|||||||
@@ -0,0 +1,29 @@
|
|||||||
|
import { memo } from 'react'
|
||||||
|
import { useTranslation } from 'react-i18next'
|
||||||
|
import Tooltip from '@/app/components/base/tooltip'
|
||||||
|
import Field from '@/app/components/workflow/nodes/_base/components/field'
|
||||||
|
|
||||||
|
const i18nPrefix = 'workflow.nodes.llm'
|
||||||
|
|
||||||
|
const Tools = () => {
|
||||||
|
const { t } = useTranslation()
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Field
|
||||||
|
title={t(`${i18nPrefix}.tools.title`)}
|
||||||
|
tooltip={t('appDebug.vision.description')!}
|
||||||
|
operations={(
|
||||||
|
<Tooltip
|
||||||
|
popupContent={t('appDebug.vision.onlySupportVisionModelTip')!}
|
||||||
|
>
|
||||||
|
</Tooltip>
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
<div>
|
||||||
|
<div>Tools</div>
|
||||||
|
</div>
|
||||||
|
</Field>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default memo(Tools)
|
||||||
@@ -560,6 +560,9 @@ const translation = {
|
|||||||
saveSchema: 'Please finish editing the current field before saving the schema',
|
saveSchema: 'Please finish editing the current field before saving the schema',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
tools: {
|
||||||
|
title: 'Tools',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
knowledgeRetrieval: {
|
knowledgeRetrieval: {
|
||||||
queryVariable: 'Query Variable',
|
queryVariable: 'Query Variable',
|
||||||
|
|||||||
Reference in New Issue
Block a user