File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
backend/tests/unit/base/tools
lfx/src/lfx/components/data_source Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 33
44import pytest
55from lfx .base .tools .component_tool import ComponentToolkit
6+ from lfx .components .data_source .sql_executor import SQLComponent
67from lfx .components .input_output .chat_output import ChatOutput
78from lfx .components .langchain_utilities import ToolCallingAgentComponent
89from lfx .components .openai .openai_chat_model import OpenAIModelComponent
910from lfx .components .tools .calculator import CalculatorToolComponent
10- from lfx .components .data_source .sql_executor import SQLComponent
1111from lfx .graph .graph .base import Graph
1212from pydantic import BaseModel
1313
Original file line number Diff line number Diff line change 1111 from lfx .components .data_source .mock_data import MockDataGeneratorComponent
1212 from lfx .components .data_source .news_search import NewsSearchComponent
1313 from lfx .components .data_source .rss import RSSReaderComponent
14+ from lfx .components .data_source .sql_executor import SQLComponent
1415 from lfx .components .data_source .url import URLComponent
1516 from lfx .components .data_source .web_search import WebSearchComponent
16- from lfx .components .data_source .sql_executor import SQLComponent
1717
1818_dynamic_imports = {
1919 "APIRequestComponent" : "api_request" ,
3434 "MockDataGeneratorComponent" ,
3535 "NewsSearchComponent" ,
3636 "RSSReaderComponent" ,
37+ "SQLComponent" ,
3738 "URLComponent" ,
3839 "WebSearchComponent" ,
39- "SQLComponent" ,
4040]
4141
4242
You can’t perform that action at this time.
0 commit comments