Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -11,7 +11,7 @@ import base64
|
|
11 |
import tempfile
|
12 |
from reportlab.pdfgen import canvas
|
13 |
from reportlab.lib.pagesizes import letter
|
14 |
-
from PyPDF2 import
|
15 |
|
16 |
from hugchat import hugchat
|
17 |
from hugchat.login import Login
|
@@ -198,7 +198,7 @@ def clear_all(history, uploaded_file_paths, chats):
|
|
198 |
# Verschiebe den Lesekopf an den Beginn des Bytes IO Streams
|
199 |
memoryFile.seek(0)
|
200 |
# Erstelle ein PDF-Objekt aus dem Bytes IO Stream
|
201 |
-
pdf =
|
202 |
# Öffne eine neue PDF-Datei und kopiere den Inhalt des Bytestreams hinein
|
203 |
with open(file_path_download, 'wb') as outf:
|
204 |
pdf.write(outf)
|
|
|
11 |
import tempfile
|
12 |
from reportlab.pdfgen import canvas
|
13 |
from reportlab.lib.pagesizes import letter
|
14 |
+
from PyPDF2 import PdfReader
|
15 |
|
16 |
from hugchat import hugchat
|
17 |
from hugchat.login import Login
|
|
|
198 |
# Verschiebe den Lesekopf an den Beginn des Bytes IO Streams
|
199 |
memoryFile.seek(0)
|
200 |
# Erstelle ein PDF-Objekt aus dem Bytes IO Stream
|
201 |
+
pdf = PdfReader(memoryFile)
|
202 |
# Öffne eine neue PDF-Datei und kopiere den Inhalt des Bytestreams hinein
|
203 |
with open(file_path_download, 'wb') as outf:
|
204 |
pdf.write(outf)
|