LuckRafly commited on
Commit
a15a84a
·
verified ·
1 Parent(s): 66f9b89

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +3 -1
utils.py CHANGED
@@ -4,6 +4,7 @@ import pdf2image
4
  import io
5
  import base64
6
  from dotenv import load_dotenv
 
7
 
8
  load_dotenv()
9
 
@@ -18,9 +19,10 @@ def get_gemini_response(prompt, pdf_content, input):
18
  def input_pdf_setup(uploaded_file):
19
  if uploaded_file is not None:
20
  ## Convert the PDF to image
 
21
  images=pdf2image.convert_from_bytes(
22
  uploaded_file.read(),
23
- poppler_path= "poppler-23.11.0\\Library\\bin"
24
  )
25
  # first_page=images[0]
26
  pdf_parts = []
 
4
  import io
5
  import base64
6
  from dotenv import load_dotenv
7
+ from pathlib import Path
8
 
9
  load_dotenv()
10
 
 
19
  def input_pdf_setup(uploaded_file):
20
  if uploaded_file is not None:
21
  ## Convert the PDF to image
22
+ path = Path("poppler-23.11.0\\Library\\bin")
23
  images=pdf2image.convert_from_bytes(
24
  uploaded_file.read(),
25
+ poppler_path= path
26
  )
27
  # first_page=images[0]
28
  pdf_parts = []