Instructions to use AX1Y2JP/seedvr2-my_test_model12 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- SeedVR
How to use AX1Y2JP/seedvr2-my_test_model12 with SeedVR:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Notebooks
- Google Colab
- Kaggle
File size: 315 Bytes
bf07e57 | 1 2 3 4 5 6 7 8 9 10 | from comfy_api.latest import ComfyExtension
from .seedvr_nodes import SeedVR2ChunkFeedForward
class SeedVR2NodesExtension(ComfyExtension):
async def get_node_list(self) -> list:
return [SeedVR2ChunkFeedForward]
async def comfy_entrypoint() -> SeedVR2NodesExtension:
return SeedVR2NodesExtension()
|