From cbfd23dfb2404c6a8e2aa5e50c42d8a94ce2a43b Mon Sep 17 00:00:00 2001 From: Edwin Jose Date: Tue, 22 Apr 2025 12:25:42 -0400 Subject: [PATCH] fix: Embedding model component format issues (#7733) * fix format issues * [autofix.ci] apply automated fixes * Update embedding_model.py --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> --- .../base/langflow/components/embeddings/embedding_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/base/langflow/components/embeddings/embedding_model.py b/src/backend/base/langflow/components/embeddings/embedding_model.py index bf668532f..539a30f45 100644 --- a/src/backend/base/langflow/components/embeddings/embedding_model.py +++ b/src/backend/base/langflow/components/embeddings/embedding_model.py @@ -58,7 +58,7 @@ class EmbeddingModelComponent(LCEmbeddingsModel): IntInput( name="dimensions", display_name="Dimensions", - info="The number of dimensions the resulting output embeddings should have. Only supported by certain models.", + info="The number of dimensions the resulting output embeddings should have.", advanced=True, ), IntInput(name="chunk_size", display_name="Chunk Size", advanced=True, value=1000),