TensorflowHubEmbeddings(
self,
**kwargs: Any = {},
)TensorflowHub embedding models.
To use, you should have the tensorflow_text python package installed.
Example:
.. code-block:: python
from langchain_community.embeddings import TensorflowHubEmbeddings url = "https://tfhub.dev/google/universal-sentence-encoder-multilingual/3" tf = TensorflowHubEmbeddings(model_url=url)