diff --git a/docs/modules/models/llms/integrations/octoai.ipynb b/docs/extras/modules/model_io/models/llms/integrations/octoai.ipynb similarity index 100% rename from docs/modules/models/llms/integrations/octoai.ipynb rename to docs/extras/modules/model_io/models/llms/integrations/octoai.ipynb diff --git a/langchain/embeddings/__init__.py b/langchain/embeddings/__init__.py index b68769c398..a492ab3b0c 100644 --- a/langchain/embeddings/__init__.py +++ b/langchain/embeddings/__init__.py @@ -24,6 +24,7 @@ from langchain.embeddings.llamacpp import LlamaCppEmbeddings from langchain.embeddings.minimax import MiniMaxEmbeddings from langchain.embeddings.modelscope_hub import ModelScopeEmbeddings from langchain.embeddings.mosaicml import MosaicMLInstructorEmbeddings +from langchain.embeddings.octoai_embeddings import OctoAIEmbeddings from langchain.embeddings.openai import OpenAIEmbeddings from langchain.embeddings.sagemaker_endpoint import SagemakerEndpointEmbeddings from langchain.embeddings.self_hosted import SelfHostedEmbeddings @@ -64,6 +65,7 @@ __all__ = [ "DeepInfraEmbeddings", "DashScopeEmbeddings", "EmbaasEmbeddings", + "OctoAIEmbeddings", ]