diff --git a/src/backend/base/langflow/components/embeddings/CohereEmbeddings.py b/src/backend/base/langflow/components/embeddings/CohereEmbeddings.py index 7f4f6a513..7c4062c99 100644 --- a/src/backend/base/langflow/components/embeddings/CohereEmbeddings.py +++ b/src/backend/base/langflow/components/embeddings/CohereEmbeddings.py @@ -34,7 +34,7 @@ class CohereEmbeddingsComponent(LCModelComponent): ] def build_embeddings(self) -> Embeddings: - return CohereEmbeddings( + return CohereEmbeddings( # type: ignore cohere_api_key=self.cohere_api_key, model=self.model, truncate=self.truncate,