-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename component modules to lower case (ruff N999)
- Loading branch information
Showing
208 changed files
with
312 additions
and
259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
from .APIRequest import APIRequestComponent | ||
from .Directory import DirectoryComponent | ||
from .File import FileComponent | ||
from .URL import URLComponent | ||
from .Webhook import WebhookComponent | ||
from .api_request import APIRequestComponent | ||
from .directory import DirectoryComponent | ||
from .file import FileComponent | ||
from .url import URLComponent | ||
from .webhook import WebhookComponent | ||
|
||
__all__ = ["APIRequestComponent", "DirectoryComponent", "FileComponent", "URLComponent", "WebhookComponent"] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
11 changes: 6 additions & 5 deletions
11
src/backend/base/langflow/components/deactivated/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions
6
src/backend/base/langflow/components/documentloaders/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from .Confluence import ConfluenceComponent | ||
from .GitLoader import GitLoaderComponent | ||
from .Unstructured import UnstructuredComponent | ||
from .confluence import ConfluenceComponent | ||
from .git import GitLoaderComponent | ||
from .unstructured import UnstructuredComponent | ||
|
||
__all__ = ["ConfluenceComponent", "GitLoaderComponent", "UnstructuredComponent"] |
File renamed without changes.
20 changes: 10 additions & 10 deletions
20
src/backend/base/langflow/components/embeddings/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...w/components/embeddings/AIMLEmbeddings.py → ...se/langflow/components/embeddings/aiml.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from .aiml import AIMLEmbeddingsImpl | ||
|
||
__all__ = ["AIMLEmbeddingsImpl"] |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,47 @@ | ||
from .CombineText import CombineTextComponent | ||
from .CreateList import CreateListComponent | ||
from .CustomComponent import CustomComponent | ||
from .FilterData import FilterDataComponent | ||
from .IDGenerator import IDGeneratorComponent | ||
from .Memory import MemoryComponent | ||
from .MergeData import MergeDataComponent | ||
from .ParseData import ParseDataComponent | ||
from .SplitText import SplitTextComponent | ||
from .StoreMessage import StoreMessageComponent | ||
from .combine_text import CombineTextComponent | ||
from .create_list import CreateListComponent | ||
from .csv_to_data import CSVToDataComponent | ||
from .current_date import CurrentDateComponent | ||
from .custom_component import CustomComponent | ||
from .data_conditional_router import DataConditionalRouterComponent | ||
from .extract_key import ExtractDataKeyComponent | ||
from .filter_data import FilterDataComponent | ||
from .filter_data_values import DataFilterComponent | ||
from .hierarchical_task import HierarchicalTaskComponent | ||
from .id_generator import IDGeneratorComponent | ||
from .json_to_data import JSONToDataComponent | ||
from .memory import MemoryComponent | ||
from .merge_data import MergeDataComponent | ||
from .message_to_data import MessageToDataComponent | ||
from .parse_data import ParseDataComponent | ||
from .parse_json_data import ParseJSONDataComponent | ||
from .sequential_task import SequentialTaskComponent | ||
from .split_text import SplitTextComponent | ||
from .store_message import StoreMessageComponent | ||
from .structured_output import StructuredOutputComponent | ||
|
||
__all__ = [ | ||
"CSVToDataComponent", | ||
"CombineTextComponent", | ||
"CreateListComponent", | ||
"CurrentDateComponent", | ||
"CustomComponent", | ||
"DataConditionalRouterComponent", | ||
"DataFilterComponent", | ||
"ExtractDataKeyComponent", | ||
"FilterDataComponent", | ||
"FilterDataComponent", | ||
"HierarchicalTaskComponent", | ||
"IDGeneratorComponent", | ||
"IDGeneratorComponent", | ||
"ListComponent", | ||
"JSONToDataComponent", | ||
"MemoryComponent", | ||
"MergeDataComponent", | ||
"MessageToDataComponent", | ||
"ParseDataComponent", | ||
"ParseJSONDataComponent", | ||
"SequentialTaskComponent", | ||
"SplitTextComponent", | ||
"StoreMessageComponent", | ||
"StructuredOutputComponent", | ||
] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .ChatInput import ChatInput | ||
from .TextInput import TextInputComponent | ||
from .chat import ChatInput | ||
from .text import TextInputComponent | ||
|
||
__all__ = ["ChatInput", "TextInputComponent"] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
src/backend/base/langflow/components/link_extractors/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
src/backend/base/langflow/components/output_parsers/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from .OutputParser import OutputParserComponent | ||
from .output_parser import OutputParserComponent | ||
|
||
__all__ = ["OutputParserComponent"] |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .ChatOutput import ChatOutput | ||
from .TextOutput import TextOutputComponent | ||
from .chat import ChatOutput | ||
from .text import TextOutputComponent | ||
|
||
__all__ = ["ChatOutput", "TextOutputComponent"] |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .LangChainHubPrompt import LangChainHubPromptComponent | ||
from .Prompt import PromptComponent | ||
from .langchain_hub import LangChainHubPromptComponent | ||
from .prompt import PromptComponent | ||
|
||
__all__ = ["LangChainHubPromptComponent", "PromptComponent"] |
File renamed without changes.
24 changes: 12 additions & 12 deletions
24
src/backend/base/langflow/components/prototypes/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions
10
src/backend/base/langflow/components/retrievers/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions
8
src/backend/base/langflow/components/textsplitters/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from .AstraDB import AstraVectorStoreComponent | ||
from .astradb import AstraVectorStoreComponent | ||
|
||
__all__ = ["AstraVectorStoreComponent"] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions
10
src/backend/base/langflow/initial_setup/starter_projects/basic_prompting.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.