Spaces:
Sleeping
Sleeping
Chris Finlayson
commited on
Commit
Β·
74d23f2
1
Parent(s):
5127f5c
Update space name
Browse files
.DS_Store
ADDED
Binary file (6.15 kB). View file
|
|
.vscode/launch.json
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
// Use IntelliSense to learn about possible attributes.
|
3 |
+
// Hover to view descriptions of existing attributes.
|
4 |
+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
5 |
+
"version": "0.2.0",
|
6 |
+
"configurations": [
|
7 |
+
{
|
8 |
+
"name": "Python: Current File",
|
9 |
+
"type": "python",
|
10 |
+
"request": "launch",
|
11 |
+
"program": "${file}",
|
12 |
+
"console": "integratedTerminal",
|
13 |
+
"justMyCode": true,
|
14 |
+
"python": "/opt/homebrew/bin/python3.10"
|
15 |
+
}
|
16 |
+
]
|
17 |
+
}
|
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
emoji: π
|
4 |
colorFrom: yellow
|
5 |
colorTo: yellow
|
|
|
1 |
---
|
2 |
+
title: PDF auto-summarise
|
3 |
emoji: π
|
4 |
colorFrom: yellow
|
5 |
colorTo: yellow
|
app.py
CHANGED
@@ -25,5 +25,5 @@ inputs = [
|
|
25 |
gr.Checkbox(label="Do Sample", value=False)
|
26 |
]
|
27 |
|
28 |
-
iface = gr.Interface(fn=load_pdf, inputs=inputs, outputs="text", title="PDF
|
29 |
iface.launch()
|
|
|
25 |
gr.Checkbox(label="Do Sample", value=False)
|
26 |
]
|
27 |
|
28 |
+
iface = gr.Interface(fn=load_pdf, inputs=inputs, outputs="text", title="PDF auto-summarise")
|
29 |
iface.launch()
|