started notes and Readme
This commit is contained in:
parent
8cc53a6aaa
commit
8bff1d7f1b
4 changed files with 81 additions and 0 deletions
30
Readme.md
30
Readme.md
|
|
@ -0,0 +1,30 @@
|
|||
|
||||
# What is Docling ?
|
||||
Docling simplifies document processing, parsing diverse formats — including advanced PDF understanding — and providing seamless integrations with the gen AI ecosystem.
|
||||
|
||||
# Features
|
||||
- 🗂️ Parsing of multiple document formats incl. PDF, DOCX, PPTX, XLSX, HTML, WAV, MP3, WebVTT, images (PNG, TIFF, JPEG, ...), LaTeX, plain text, and more
|
||||
- 📑 Advanced PDF understanding incl. page layout, reading order, table structure, code, formulas, image classification, and more
|
||||
- 🧬 Unified, expressive DoclingDocument representation format
|
||||
- ↪️ Various export formats and options, including Markdown, HTML, WebVTT, DocTags and lossless JSON
|
||||
- 📜 Support of several application-specifc XML schemas incl. USPTO patents, JATS articles, and XBRL financial reports.
|
||||
- 🔒 Local execution capabilities for sensitive data and air-gapped environments
|
||||
- 🤖 Plug-and-play integrations incl. LangChain, LlamaIndex, Crew AI & Haystack for agentic AI
|
||||
- 🔍 Extensive OCR support for scanned PDFs and images
|
||||
- 👓 Support of several Visual Language Models (GraniteDocling)
|
||||
- 🎙️ Audio support with Automatic Speech Recognition (ASR) models
|
||||
- 🔌 Connect to any agent using the MCP server
|
||||
- 💻 Simple and convenient CLI
|
||||
|
||||
# What's new
|
||||
- 📤 Structured information extraction [🧪 beta]
|
||||
- 📑 New layout model (Heron) by default, for faster PDF parsing
|
||||
- 🔌 MCP server for agentic applications
|
||||
- 💼 Parsing of XBRL (eXtensible Business Reporting Language) documents for financial reports
|
||||
- 💬 Parsing of WebVTT (Web Video Text Tracks) files and export to WebVTT format
|
||||
- 💬 Parsing of LaTeX files
|
||||
- 📝 Parsing of plain-text files (.txt, .text) and Markdown supersets (.qmd, .Rmd)
|
||||
- 📝 Chart understanding (Barchart, Piechart, LinePlot): converting them into tables, code or adding detailed descriptions
|
||||
Coming soon
|
||||
- 📝 Metadata extraction, including title, authors, references & language
|
||||
- 📝 Complex chemistry understanding (Molecular structures)
|
||||
BIN
Readme.pdf
Normal file
BIN
Readme.pdf
Normal file
Binary file not shown.
51
doc/Notes.md
51
doc/Notes.md
|
|
@ -1,2 +1,53 @@
|
|||
# Docing Testing
|
||||
|
||||
## Using Git on Forgejo Server
|
||||
|
||||
## The Forgejo Server
|
||||
|
||||
### Create project
|
||||
|
||||
http://192.168.1.210:3000/stephen/137_Docing-Test
|
||||
|
||||
this creates an empty repository
|
||||
|
||||
### On remote site MacBook
|
||||
|
||||
Open terminal on 01_Projects in the terminal
|
||||
|
||||
```zsh
|
||||
stephenlohning@Scotty 01_Projects % git clone http://192.168.1.210:3000/stephen/137_Docing-Test
|
||||
Cloning into '137_Docing-Test'...
|
||||
warning: You appear to have cloned an empty repository.
|
||||
```
|
||||
This creates a directory called "137_Docing-Test" the same as the repository. There only one file in the directory
|
||||
|
||||
```zsh
|
||||
stephenlohning@Scotty 137_Docing-Test % ls -la
|
||||
total 0
|
||||
drwxr-xr-x 3 stephenlohning staff 96 May 29 19:42 .
|
||||
drwxr-xr-x@ 158 stephenlohning staff 5056 May 29 19:42 ..
|
||||
drwxr-xr-x 9 stephenlohning staff 288 May 29 19:42 .git
|
||||
stephenlohning@Scotty 137_Docing-Test % git remote -v
|
||||
origin http://192.168.1.210:3000/stephen/137_Docing-Test (fetch)
|
||||
origin http://192.168.1.210:3000/stephen/137_Docing-Test (push)
|
||||
```
|
||||
|
||||
```zsh
|
||||
stephenlohning@Scotty 137_Docing-Test % git branch -M main
|
||||
stephenlohning@Scotty 137_Docing-Test % touch .gitignore
|
||||
stephenlohning@Scotty 137_Docing-Test % git config --global push.followTags true
|
||||
stephenlohning@Scotty 137_Docing-Test %
|
||||
```
|
||||
### Create structure you want, template
|
||||
|
||||
```zsh
|
||||
stephenlohning@Scotty 137_Docing-Test % tree
|
||||
.
|
||||
├── Readme.md
|
||||
└── doc
|
||||
├── Notes.md
|
||||
├── Notes.pdf
|
||||
└── images
|
||||
|
||||
3 directories, 3 files
|
||||
```
|
||||
BIN
doc/Notes.pdf
BIN
doc/Notes.pdf
Binary file not shown.
Loading…
Reference in a new issue