Files
nostrdvm/nostr_dvm/backends/nova_server/modules/stablevideodiffusion/version.py
Believethehype 21372ff779 added svd
2024-01-15 09:24:03 +01:00

13 lines
249 B
Python

""" Stable Video Diffusion
"""
# We follow Semantic Versioning (https://semver.org/)
_MAJOR_VERSION = '1'
_MINOR_VERSION = '0'
_PATCH_VERSION = '0'
__version__ = '.'.join([
_MAJOR_VERSION,
_MINOR_VERSION,
_PATCH_VERSION,
])