Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
2c3fe7f
docs: update component links to individual pages (#10706)
mendonk Nov 25, 2025
168b84c
fix: avoid updating Message if ChatOutput is connected to ChatInput (…
keval718 Nov 25, 2025
0833dfb
Feat: Runflow optimization and improved dropdown behavior (#10720)
HzaRashid Nov 25, 2025
5040efc
fix: Add dynamic tool mode descriptions for agent integration (#10744)
Cristhianzl Nov 27, 2025
c46d31c
fix: Add profile picture management and API endpoints (#10763)
Cristhianzl Dec 1, 2025
2d735a7
deps: upgrade altk (#10804)
jordanrfrazier Dec 1, 2025
17aff85
fix: use running event loop to fix asyncio error when calling mcp too…
jordanrfrazier Dec 1, 2025
956baf6
fix: Improve file processing robustness and error feedback (#10781)
Cristhianzl Dec 1, 2025
4529e92
fix: resolve merge conflict (#10831)
keval718 Dec 1, 2025
e89bee0
fix: fixed warning on console for nested button (#10724) (#10832)
olayinkaadelakun Dec 1, 2025
f7a82f3
fix: fixed warning on console (#10745) (#10830)
olayinkaadelakun Dec 1, 2025
73120ad
fix: mask value to hide null field being returned (#10778) (#10829)
olayinkaadelakun Dec 1, 2025
e321e3e
Fix: Allow refresh list button to stay stagnant while zoom (Safari) (…
olayinkaadelakun Dec 1, 2025
423419e
feat: Add superuser support for running any user flow (#10808)
Cristhianzl Dec 1, 2025
a562670
Revert "feat: Add superuser support for running any user flow (#10808)"
Cristhianzl Dec 2, 2025
4df89f1
fix: Ollama models list in Agent component (#10814)
HimavarshaVS Dec 2, 2025
c66c679
Fix: Ensure Default Tab is Credential (#10779) (#10826)
olayinkaadelakun Dec 2, 2025
2a3d424
chore: update cuga version (#10737) (#10738)
jordanrfrazier Dec 2, 2025
731cc8b
chore: Remove DataFrameToToolsetComponent and related tests (#10845)
edwinjosechittilappilly Dec 3, 2025
3a2395b
fix: Handle GCP JSON parsing credentials (#10859)
erichare Dec 3, 2025
4dbb8ed
fix: Update stop sequence handling in WatsonxAIComponent
ricofurtado Dec 5, 2025
942174a
fix: Restore original stop sequence handling in WatsonxAIComponent
ricofurtado Dec 17, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: Remove DataFrameToToolsetComponent and related tests (#10845)
Remove DataFrameToToolsetComponent and related tests

Deleted the DataFrameToToolsetComponent implementation, its import/registration in the processing module, and all associated unit tests. This cleans up unused code and test files related to converting DataFrame rows into toolset actions.
  • Loading branch information
edwinjosechittilappilly authored Dec 3, 2025
commit 731cc8b9d4d875b69a2c5a7b8c62d9194840b1e5
276 changes: 0 additions & 276 deletions src/backend/tests/unit/components/processing/test_dataframe_toolset.py

This file was deleted.

2 changes: 1 addition & 1 deletion src/lfx/src/lfx/_assets/component_index.json

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions src/lfx/src/lfx/components/processing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
from lfx.components.processing.create_list import CreateListComponent
from lfx.components.processing.data_operations import DataOperationsComponent
from lfx.components.processing.dataframe_operations import DataFrameOperationsComponent
from lfx.components.processing.dataframe_to_toolset import DataFrameToToolsetComponent
from lfx.components.processing.json_cleaner import JSONCleaner
from lfx.components.processing.output_parser import OutputParserComponent
from lfx.components.processing.parse_data import ParseDataComponent
Expand All @@ -27,7 +26,6 @@
"CreateListComponent": "create_list",
"DataOperationsComponent": "data_operations",
"DataFrameOperationsComponent": "dataframe_operations",
"DataFrameToToolsetComponent": "dataframe_to_toolset",
"JSONCleaner": "json_cleaner",
"OutputParserComponent": "output_parser",
"ParseDataComponent": "parse_data",
Expand All @@ -41,7 +39,6 @@
"CombineTextComponent",
"CreateListComponent",
"DataFrameOperationsComponent",
"DataFrameToToolsetComponent",
"DataOperationsComponent",
"JSONCleaner",
"MessageStoreComponent",
Expand Down
Loading