Files
ragflow/web/src/pages/agent/context.ts
balibabu 0bc1f45634 Feat: Enables the message operator form to reference the data defined by the begin operator #3221 (#8108)
### 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)
2025-06-06 17:54:59 +08:00

7 lines
194 B
TypeScript

import { RAGFlowNodeType } from '@/interfaces/database/flow';
import { createContext } from 'react';
export const AgentFormContext = createContext<RAGFlowNodeType | undefined>(
undefined,
);