mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
4159a4723c
Added missed module descriptions. Fixed format.
12 lines
346 B
Python
12 lines
346 B
Python
"""**OpenCLIP Embeddings** model.
|
|
|
|
OpenCLIP is a multimodal model that can encode text and images into a shared space.
|
|
|
|
See this paper for more details: https://arxiv.org/abs/2103.00020
|
|
and [this repository](https://github.com/mlfoundations/open_clip) for details.
|
|
|
|
"""
|
|
from .open_clip import OpenCLIPEmbeddings
|
|
|
|
__all__ = ["OpenCLIPEmbeddings"]
|