Spaces:
Running
Running
Commit
·
8591f1f
1
Parent(s):
39baca3
Update README with API endpoints and force rebuild
Browse files- Add API documentation to README
- Force Space rebuild with new content
- Version 0.3.0
- README.md +15 -0
- server.log +9 -0
README.md
CHANGED
@@ -7,4 +7,19 @@ sdk: docker
|
|
7 |
pinned: false
|
8 |
---
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
7 |
pinned: false
|
8 |
---
|
9 |
|
10 |
+
# MinerU PDF to Markdown Converter
|
11 |
+
|
12 |
+
This is a Hugging Face Space for converting PDF files to Markdown using MinerU.
|
13 |
+
|
14 |
+
## API Endpoints
|
15 |
+
|
16 |
+
- `GET /` - Main endpoint
|
17 |
+
- `GET /health` - Health check
|
18 |
+
- `POST /api/convert` - Upload PDF for conversion
|
19 |
+
- `GET /api/test` - Test endpoint
|
20 |
+
|
21 |
+
## Version: 0.3.0
|
22 |
+
|
23 |
+
Last updated: 2025-07-10
|
24 |
+
|
25 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
server.log
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
INFO: Started server process [31027]
|
2 |
+
INFO: Waiting for application startup.
|
3 |
+
INFO: Application startup complete.
|
4 |
+
INFO: Uvicorn running on http://0.0.0.0:8000 (Press CTRL+C to quit)
|
5 |
+
INFO: 127.0.0.1:62417 - "POST /api/convert HTTP/1.1" 200 OK
|
6 |
+
INFO: Shutting down
|
7 |
+
INFO: Waiting for application shutdown.
|
8 |
+
INFO: Application shutdown complete.
|
9 |
+
INFO: Finished server process [31027]
|