ardy-motion-api / ardy /model /llm2vec /__init__.py
cs686's picture
Deploy ARDY ZeroGPU Blender motion API
c1e2af3 verified
Raw
History Blame Contribute Delete
312 Bytes
# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
"""LLM2Vec text encoder and wrapper for ARDY."""
from .llm2vec import LLM2Vec
from .llm2vec_wrapper import LLM2VecEncoder
__all__ = [
"LLM2Vec",
"LLM2VecEncoder",
]