refactor: rename CSV component and update Google OAuth imports (#4521)
* change csv to data name, change googleauth folder * [autofix.ci] apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
parent
8cd87210ad
commit
2ddd773512
3 changed files with 8 additions and 2 deletions
|
|
@ -8,7 +8,7 @@ from langflow.schema import Data
|
|||
|
||||
|
||||
class CSVToDataComponent(Component):
|
||||
display_name = "CSV to Data List"
|
||||
display_name = "Load CSV"
|
||||
description = "Load a CSV file, CSV from a file path, or a valid CSV string and convert it to a list of Data"
|
||||
icon = "file-spreadsheet"
|
||||
beta = True
|
||||
|
|
|
|||
|
|
@ -1,5 +1,11 @@
|
|||
from .gmail import GmailLoaderComponent
|
||||
from .google_drive import GoogleDriveComponent
|
||||
from .google_drive_search import GoogleDriveSearchComponent
|
||||
from .google_oauth_token import GoogleOAuthToken
|
||||
|
||||
__all__ = ["GmailLoaderComponent", "GoogleDriveComponent", "GoogleDriveSearchComponent"]
|
||||
__all__ = [
|
||||
"GmailLoaderComponent",
|
||||
"GoogleDriveComponent",
|
||||
"GoogleDriveSearchComponent",
|
||||
"GoogleOAuthToken",
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue