Spaces:
Runtime error
Runtime error
File size: 314 Bytes
7e976d8 | 1 2 3 4 5 6 7 8 9 10 11 12 | # SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
"""LLM2Vec text encoder and wrapper for Kimodo."""
from .llm2vec import LLM2Vec
from .llm2vec_wrapper import LLM2VecEncoder
__all__ = [
"LLM2Vec",
"LLM2VecEncoder",
]
|