Chris Finlayson commited on
Commit
74d23f2
Β·
1 Parent(s): 5127f5c

Update space name

Browse files
Files changed (4) hide show
  1. .DS_Store +0 -0
  2. .vscode/launch.json +17 -0
  3. README.md +1 -1
  4. app.py +1 -1
.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: Foundry
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 summariser")
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()