mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-23 15:38:55 +01:00
Fix randint import from random when creating filenames for tmp
This commit is contained in:
parent
92b6b3ef7b
commit
bd55028115
2 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
import logging
|
||||
import os
|
||||
from datetime import datetime
|
||||
from random import random
|
||||
from random import randint
|
||||
from typing import Dict, List, Tuple
|
||||
|
||||
from langchain_community.document_loaders import Docx2txtLoader
|
||||
|
@ -95,7 +95,7 @@ class DocxToEntries(TextToEntries):
|
|||
"""Extract text from specified DOCX file"""
|
||||
try:
|
||||
timestamp_now = datetime.utcnow().timestamp()
|
||||
random_suffix = random.randint(0, 1000)
|
||||
random_suffix = randint(0, 1000)
|
||||
tmp_file = f"tmp_docx_file_{timestamp_now}_{random_suffix}.docx"
|
||||
docx_entry_by_pages = []
|
||||
with open(tmp_file, "wb") as f:
|
||||
|
|
|
@ -2,7 +2,7 @@ import base64
|
|||
import logging
|
||||
import os
|
||||
from datetime import datetime
|
||||
from random import random
|
||||
from random import randint
|
||||
from typing import Dict, List, Tuple
|
||||
|
||||
from langchain_community.document_loaders import PyMuPDFLoader
|
||||
|
@ -99,7 +99,7 @@ class PdfToEntries(TextToEntries):
|
|||
try:
|
||||
# Write the PDF file to a temporary file, as it is stored in byte format in the pdf_file object and the PDF Loader expects a file path
|
||||
timestamp_now = datetime.utcnow().timestamp()
|
||||
random_suffix = random.randint(0, 1000)
|
||||
random_suffix = randint(0, 1000)
|
||||
tmp_file = f"tmp_pdf_file_{timestamp_now}_{random_suffix}.pdf"
|
||||
pdf_entry_by_pages = []
|
||||
with open(f"{tmp_file}", "wb") as f:
|
||||
|
|
Loading…
Reference in a new issue