mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-08-04 14:50:30 +08:00
### What problem does this PR solve? Feat: Enables the message operator form to reference the data defined by the begin operator #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
7 lines
194 B
TypeScript
7 lines
194 B
TypeScript
import { RAGFlowNodeType } from '@/interfaces/database/flow';
|
|
import { createContext } from 'react';
|
|
|
|
export const AgentFormContext = createContext<RAGFlowNodeType | undefined>(
|
|
undefined,
|
|
);
|