├── .gitignore ├── .idea ├── .gitignore ├── compiler.xml ├── google-java-format.xml ├── jarRepositories.xml ├── misc.xml └── vcs.xml ├── README.md ├── pom.xml └── src └── main ├── java └── io │ └── thoqbk │ └── openaipdf │ └── Main.java └── resources └── io └── thoqbk └── openaipdf └── sample-invoice.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoqbk/openai-pdf/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/google-java-format.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoqbk/openai-pdf/HEAD/.idea/google-java-format.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoqbk/openai-pdf/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoqbk/openai-pdf/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoqbk/openai-pdf/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoqbk/openai-pdf/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoqbk/openai-pdf/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/io/thoqbk/openaipdf/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoqbk/openai-pdf/HEAD/src/main/java/io/thoqbk/openaipdf/Main.java -------------------------------------------------------------------------------- /src/main/resources/io/thoqbk/openaipdf/sample-invoice.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoqbk/openai-pdf/HEAD/src/main/resources/io/thoqbk/openaipdf/sample-invoice.pdf --------------------------------------------------------------------------------