2025-02-25 11:32:01 +08:00
|
|
|
import { RAGFlowNodeType } from '@/interfaces/database/flow';
|
|
|
|
|
import { createContext } from 'react';
|
|
|
|
|
|
2025-06-06 17:54:59 +08:00
|
|
|
export const AgentFormContext = createContext<RAGFlowNodeType | undefined>(
|
2025-02-25 11:32:01 +08:00
|
|
|
undefined,
|
|
|
|
|
);
|