Skip to content

Commit

Permalink
feat: Introduced YouTube bundle with essential components (#5415)
Browse files Browse the repository at this point in the history
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
4 people authored Jan 20, 2025
1 parent bde5fea commit 94d192f
Show file tree
Hide file tree
Showing 13 changed files with 1,272 additions and 259 deletions.
2 changes: 0 additions & 2 deletions src/backend/base/langflow/components/tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
from .wolfram_alpha_api import WolframAlphaAPIComponent
from .yahoo import YfinanceComponent
from .yahoo_finance import YfinanceToolComponent
from .youtube_transcripts import YouTubeTranscriptsComponent

with warnings.catch_warnings():
warnings.simplefilter("ignore", LangChainDeprecationWarning)
Expand Down Expand Up @@ -64,5 +63,4 @@
"WolframAlphaAPIComponent",
"YfinanceComponent",
"YfinanceToolComponent",
"YouTubeTranscriptsComponent",
]
244 changes: 0 additions & 244 deletions src/backend/base/langflow/components/tools/youtube_transcripts.py

This file was deleted.

17 changes: 17 additions & 0 deletions src/backend/base/langflow/components/youtube/__init__.py
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",
]
Loading

0 comments on commit 94d192f

Please sign in to comment.