2025-03-17 06:56:05 -07:00

14 lines
526 B
TypeScript

import { File, Paths } from "expo-file-system/next";
import FileSystem from "expo-file-system"
import { pathToFileURLString } from "expo-file-system/src/next/pathUtilities/url";
export const WHISPER_MODEL_PATH = Paths.join("..", "..", "assets", "whisper");
export const WHISPER_MODEL_DIR = new File(WHISPER_MODEL_PATH);
export const WHISPER_MODEL_SMALL_PATH = "file://../../assets/whisper/whisper-small.bin";
export async function whisperModelExists() {
const file = new File(WHISPER_MODEL_PATH);
return file.exists;
}