Update Python version to 3.11
Browse files- app.py +2 -1
- requirements.txt +0 -1
app.py
CHANGED
|
@@ -9,7 +9,8 @@ load_dotenv()
|
|
| 9 |
youtube_tool = YouTubeTranscriptExtractor()
|
| 10 |
docx_tool = TranscriptToDocx()
|
| 11 |
#summarizer_tool = TranscriptSummarizer()
|
| 12 |
-
|
|
|
|
| 13 |
def process_youtube_video(video_url, hf_api_key, gemini_api_key, model_name, existing_docx_path=None):
|
| 14 |
# Initialize tools
|
| 15 |
summarizer_tool = TranscriptSummarizer(
|
|
|
|
| 9 |
youtube_tool = YouTubeTranscriptExtractor()
|
| 10 |
docx_tool = TranscriptToDocx()
|
| 11 |
#summarizer_tool = TranscriptSummarizer()
|
| 12 |
+
import sys
|
| 13 |
+
print(sys.version)
|
| 14 |
def process_youtube_video(video_url, hf_api_key, gemini_api_key, model_name, existing_docx_path=None):
|
| 15 |
# Initialize tools
|
| 16 |
summarizer_tool = TranscriptSummarizer(
|
requirements.txt
CHANGED
|
@@ -1,4 +1,3 @@
|
|
| 1 |
-
python==3.11
|
| 2 |
smolagents
|
| 3 |
pytubefix
|
| 4 |
gradio
|
|
|
|
|
|
|
| 1 |
smolagents
|
| 2 |
pytubefix
|
| 3 |
gradio
|