Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Creating BaseFileComponent, integrating with API Request "to file" feature #4731

Open
wants to merge 23 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
a5d5082
adding ability for APIRequest to retry and save to a file
mieslep Nov 19, 2024
fff6a23
[autofix.ci] apply automated fixes
autofix-ci[bot] Nov 19, 2024
cfc7fa9
Merge branch 'main' into phil/api-request
erichare Nov 19, 2024
256936d
adding ability for APIRequest to retry and save to a file
mieslep Nov 19, 2024
576be9c
[autofix.ci] apply automated fixes
autofix-ci[bot] Nov 19, 2024
983abfd
initial refactor of FileComponent to handle Data input
mieslep Nov 19, 2024
e2f3f46
shifting potentially common logic into BaseFileComponent
mieslep Nov 20, 2024
3cdc952
improving readability and fixing problems
mieslep Nov 20, 2024
964eddb
Merge remote-tracking branch 'fork/phil/api-request' into phil/file-a…
mieslep Nov 20, 2024
557f919
[autofix.ci] apply automated fixes
autofix-ci[bot] Nov 20, 2024
7bde19d
addressing linting
mieslep Nov 20, 2024
816c715
[autofix.ci] apply automated fixes
autofix-ci[bot] Nov 20, 2024
9d1675b
linting part 2
mieslep Nov 20, 2024
c727ef0
[autofix.ci] apply automated fixes
autofix-ci[bot] Nov 20, 2024
becf61a
linting part 3
mieslep Nov 20, 2024
849d12a
preserve input fields on data objects
mieslep Nov 21, 2024
b556645
[autofix.ci] apply automated fixes
autofix-ci[bot] Nov 21, 2024
3adbaa7
ensuring processed data is linked to correct file data object
mieslep Nov 21, 2024
8e1bdac
[autofix.ci] apply automated fixes
autofix-ci[bot] Nov 21, 2024
5fcff31
addressing linting
mieslep Nov 21, 2024
ae01051
[autofix.ci] apply automated fixes
autofix-ci[bot] Nov 21, 2024
77cb891
Merge branch 'main' into phil/file-alt-input
mieslep Nov 22, 2024
16ed91a
fixing edge case
mieslep Nov 22, 2024
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
5 changes: 5 additions & 0 deletions src/backend/base/langflow/base/data/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from .base_file import BaseFileComponent

__all__ = [
"BaseFileComponent",
]
Loading
Loading