From 7c34e687e5cde93aec87f92e856df6bfbccf3130 Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Fri, 19 Jan 2024 22:12:48 -0300 Subject: [PATCH] Add Text class to field_typing module --- src/backend/langflow/field_typing/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/backend/langflow/field_typing/__init__.py b/src/backend/langflow/field_typing/__init__.py index 46ea20111..de8f020c6 100644 --- a/src/backend/langflow/field_typing/__init__.py +++ b/src/backend/langflow/field_typing/__init__.py @@ -20,6 +20,7 @@ from .constants import ( Object, Prompt, PromptTemplate, + Text, TextSplitter, Tool, VectorStore, @@ -64,6 +65,7 @@ __all__ = [ "TextSplitter", "Document", "AgentExecutor", + "Text", "Object", "Callable", "BasePromptTemplate",