Spaces:
Runtime error
Runtime error
Commit
·
19d93ca
1
Parent(s):
9f3d0ce
Update app.py
Browse files
app.py
CHANGED
@@ -41,7 +41,7 @@ with gr.Blocks() as demo:
|
|
41 |
model to read academic papers in PDF format locally. You can use it to help you summarize papers,
|
42 |
create presentation slides, or simply fulfill tasks assigned by your supervisor.\n
|
43 |
[Github](https://github.com/talkingwallace/ChatGPT-Paper-Reader)""")
|
44 |
-
with open("./
|
45 |
image_data = f.read()
|
46 |
image_base64 = base64.b64encode(image_data).decode("utf-8")
|
47 |
|
|
|
41 |
model to read academic papers in PDF format locally. You can use it to help you summarize papers,
|
42 |
create presentation slides, or simply fulfill tasks assigned by your supervisor.\n
|
43 |
[Github](https://github.com/talkingwallace/ChatGPT-Paper-Reader)""")
|
44 |
+
with open("./logo.png", "rb") as f:
|
45 |
image_data = f.read()
|
46 |
image_base64 = base64.b64encode(image_data).decode("utf-8")
|
47 |
|