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

feat: Introduced YouTube bundle with essential components #5415

Merged
merged 17 commits into from
Jan 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
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
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
Loading