#openai #pdf #pdf-file #ocr #extract #text #structured

bin+lib gpt4ocr

Extract structured text from PDFs using OpenAI's GPT4o

3 releases

0.3.2 Aug 6, 2024
0.3.1 Aug 6, 2024
0.3.0 Aug 6, 2024

#1247 in Text processing

MIT license

345KB
281 lines

GPT4OCR

A simple OCR tool that uses GPT-4o to perform OCR on pdf files. Requires a .env file with the following variables:

OPENAI_API_KEY=your_openai_api_key

Alternatively, you can pass in the OPENAI_API_KEY as an environment variable to the extract_json_from_pdf function.

Operating systems

Runs on linux. Needs poppler-utils to be installed. To install it on Ubuntu, run

sudo apt install poppler-utils
sudo apt install libssl-dev

Important observations

  • The time grows with the number of fields generated. You can specify the JSON format to limit the number of fields generated in the prompt, and that can help reduce the time required.
  • JSON comes back as a markdown block, so you can remove the "json" and "" to get the JSON data. This handled by the library currently.

Pending

  • Parallel processing to speed up the process.

Dependencies

~22–38MB
~729K SLoC