From ffb7de34ca8fdecc6b81cac2820c9108545ccb9e Mon Sep 17 00:00:00 2001 From: Ankush Gola <9536492+agola11@users.noreply.github.com> Date: Wed, 29 Mar 2023 16:17:54 -0400 Subject: [PATCH] Fix docstring (#2147) (#2160) Somehow docstring was doubled. A minor fix for this --------- Co-authored-by: Piotr Mazurek --- langchain/embeddings/aleph_alpha.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/langchain/embeddings/aleph_alpha.py b/langchain/embeddings/aleph_alpha.py index 6ae76bdb..51fbaad2 100644 --- a/langchain/embeddings/aleph_alpha.py +++ b/langchain/embeddings/aleph_alpha.py @@ -10,15 +10,9 @@ class AlephAlphaAsymmetricSemanticEmbedding(BaseModel, Embeddings): """ Wrapper for Aleph Alpha's Asymmetric Embeddings AA provides you with an endpoint to embed a document and a query. - The models were optimized to make the embeddings of a document and - the query about the document as similar to each other - as possible. Wrapper for Aleph Alpha's Asymmetric Embeddings - AA provides you with an endpoint to embed a document and a query. The models were optimized to make the embeddings of documents and the query for a document as similar as possible. To learn more, check out: https://docs.aleph-alpha.com/docs/tasks/semantic_embed/ - To learn more, check out: - https://docs.aleph-alpha.com/docs/tasks/semantic_embed/ Example: .. code-block:: python