mirror of
https://github.com/langgenius/dify-official-plugins.git
synced 2026-07-22 01:55:27 -04:00
11 lines
277 B
Python
11 lines
277 B
Python
from typing import Any
|
|
from dify_plugin import ToolProvider
|
|
|
|
|
|
class YouTubeTranscriptProvider(ToolProvider):
|
|
def _validate_credentials(self, credentials: dict[str, Any]) -> None:
|
|
"""
|
|
No credentials needed for YouTube Transcript API
|
|
"""
|
|
pass
|