MolmoE-1B-0924 / aliases.py
Muennighoff's picture
Add
d13896f
raw
history blame
No virus
109 Bytes
from os import PathLike
from typing import Union
__all__ = ["PathOrStr"]
PathOrStr = Union[str, PathLike]