-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Introduced YouTube bundle with essential components (#5415)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: cristhianzl <[email protected]> Co-authored-by: anovazzi1 <[email protected]>
- Loading branch information
1 parent
bde5fea
commit 94d192f
Showing
13 changed files
with
1,272 additions
and
259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
244 changes: 0 additions & 244 deletions
244
src/backend/base/langflow/components/tools/youtube_transcripts.py
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from .channel import YouTubeChannelComponent | ||
from .comments import YouTubeCommentsComponent | ||
from .playlist import YouTubePlaylistComponent | ||
from .search import YouTubeSearchComponent | ||
from .trending import YouTubeTrendingComponent | ||
from .video_details import YouTubeVideoDetailsComponent | ||
from .youtube_transcripts import YouTubeTranscriptsComponent | ||
|
||
__all__ = [ | ||
"YouTubeChannelComponent", | ||
"YouTubeCommentsComponent", | ||
"YouTubePlaylistComponent", | ||
"YouTubeSearchComponent", | ||
"YouTubeTranscriptsComponent", | ||
"YouTubeTrendingComponent", | ||
"YouTubeVideoDetailsComponent", | ||
] |
Oops, something went wrong.