Spaces:
Paused
Paused
File size: 330 Bytes
67b7e1c c0bb512 67b7e1c |
1 2 3 4 5 6 7 8 9 10 |
import path from "node:path"
export const storagePath = `${process.env.STORAGE_PATH || './sandbox'}`
export const inputsDirFilePath = path.join(storagePath, "training_inputs")
export const outputsDirFilePath = path.join(storagePath, "training_outputs")
export const shotFormatVersion = 1
export const sequenceFormatVersion = 1
|