mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-26 00:46:52 +08:00
### What problem does this PR solve? Feat: Add VariablePickerMenuPlugin to select variables in the prompt text box by menu #4764 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
7 lines
193 B
TypeScript
7 lines
193 B
TypeScript
import { RAGFlowNodeType } from '@/interfaces/database/flow';
|
|
import { createContext } from 'react';
|
|
|
|
export const FlowFormContext = createContext<RAGFlowNodeType | undefined>(
|
|
undefined,
|
|
);
|