File size: 181 Bytes
d5c6d34
 
 
 
 
 
1
2
3
4
5
6
7
import { createContext } from "react";
import type { VLMContextValue } from "../types/vlm";

const VLMContext = createContext<VLMContextValue | null>(null);

export { VLMContext };