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:
Cristhian Zanforlin Lousa 2024-11-12 12:22:15 -03:00 committed by GitHub
commit 2ddd773512
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 8 additions and 2 deletions

View file

@ -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

View file

@ -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",
]