Kizuki
    Preparing search index...

    Interface HomePaths

    Where every piece of Kizuki's data lives inside one home folder.

    interface HomePaths {
        data: string;
        files: string;
        home: string;
        index: string;
        lock: string;
        log: (name: LogName) => string;
        settings: string;
        workflowData: string;
    }
    Index
    data: string

    The log files. They are the truth.

    files: string

    Copies of the original files you added.

    home: string

    The home folder itself, as given.

    index: string

    The search file. Always rebuildable from files and data.

    lock: string

    The lock file that makes log writes happen one at a time.

    log: (name: LogName) => string

    The path of one log file.

    settings: string

    The model settings file, settings.json.

    workflowData: string

    Where the Workflow SDK keeps its runs.