yasserrmd commited on
Commit
d1179a7
·
verified ·
1 Parent(s): 1975b45

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -26,11 +26,12 @@ def process_pdf_to_podcast(pdf_file):
26
  transcript_path = os.path.join(session_dir, "data.pkl")
27
  tts_ready_path = os.path.join(session_dir, "podcast_ready_data.pkl")
28
  audio_output_path = os.path.join(session_dir, "final_podcast_audio.mp3")
 
29
 
30
  # Step 1: Extract Text from PDF
31
  shutil.copy(pdf_file, pdf_path)
32
 
33
- extractor = PDFTextExtractor(pdf_path,clean_text_path)
34
  clean_text_path = extractor.clean_and_save_text()
35
 
36
  # Display a preview of extracted text
 
26
  transcript_path = os.path.join(session_dir, "data.pkl")
27
  tts_ready_path = os.path.join(session_dir, "podcast_ready_data.pkl")
28
  audio_output_path = os.path.join(session_dir, "final_podcast_audio.mp3")
29
+ text_model= "meta-llama/Llama-3.2-3B-Instruct"
30
 
31
  # Step 1: Extract Text from PDF
32
  shutil.copy(pdf_file, pdf_path)
33
 
34
+ extractor = PDFTextExtractor(pdf_path,clean_text_path,text_model)
35
  clean_text_path = extractor.clean_and_save_text()
36
 
37
  # Display a preview of extracted text