Duplicated from mistralai/Ministral_3B_WebGPU
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 };