import { createContext } from "react"; import type { VLMContextValue } from "../types/vlm"; const VLMContext = createContext(null); export { VLMContext };