├── LICENSE ├── MicrosoftSlidesFY24Q3.pptx ├── README.md ├── Transforming-Content-with-GPT4o.pptx ├── config.json ├── convert-doc-to-markdown.ipynb ├── doc2md_utils.py ├── docker ├── Dockerfile ├── files │ ├── schema_template.json │ └── settings_template.json ├── gunicorn.conf.py ├── main.py ├── readme.md ├── requirements.txt ├── schema_template.json ├── templates │ ├── index.html │ └── style.css └── test-process-document.ipynb ├── index-to-azure-ai-search.ipynb ├── install-libreoffice.ipynb ├── requirements.txt ├── schema.json └── test-query.ipynb /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamca/GPT4oContentExtraction/HEAD/LICENSE -------------------------------------------------------------------------------- /MicrosoftSlidesFY24Q3.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamca/GPT4oContentExtraction/HEAD/MicrosoftSlidesFY24Q3.pptx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamca/GPT4oContentExtraction/HEAD/README.md -------------------------------------------------------------------------------- /Transforming-Content-with-GPT4o.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamca/GPT4oContentExtraction/HEAD/Transforming-Content-with-GPT4o.pptx -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamca/GPT4oContentExtraction/HEAD/config.json -------------------------------------------------------------------------------- /convert-doc-to-markdown.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamca/GPT4oContentExtraction/HEAD/convert-doc-to-markdown.ipynb -------------------------------------------------------------------------------- /doc2md_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamca/GPT4oContentExtraction/HEAD/doc2md_utils.py -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamca/GPT4oContentExtraction/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/files/schema_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamca/GPT4oContentExtraction/HEAD/docker/files/schema_template.json -------------------------------------------------------------------------------- /docker/files/settings_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamca/GPT4oContentExtraction/HEAD/docker/files/settings_template.json -------------------------------------------------------------------------------- /docker/gunicorn.conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamca/GPT4oContentExtraction/HEAD/docker/gunicorn.conf.py -------------------------------------------------------------------------------- /docker/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamca/GPT4oContentExtraction/HEAD/docker/main.py -------------------------------------------------------------------------------- /docker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamca/GPT4oContentExtraction/HEAD/docker/readme.md -------------------------------------------------------------------------------- /docker/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamca/GPT4oContentExtraction/HEAD/docker/requirements.txt -------------------------------------------------------------------------------- /docker/schema_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamca/GPT4oContentExtraction/HEAD/docker/schema_template.json -------------------------------------------------------------------------------- /docker/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamca/GPT4oContentExtraction/HEAD/docker/templates/index.html -------------------------------------------------------------------------------- /docker/templates/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamca/GPT4oContentExtraction/HEAD/docker/templates/style.css -------------------------------------------------------------------------------- /docker/test-process-document.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamca/GPT4oContentExtraction/HEAD/docker/test-process-document.ipynb -------------------------------------------------------------------------------- /index-to-azure-ai-search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamca/GPT4oContentExtraction/HEAD/index-to-azure-ai-search.ipynb -------------------------------------------------------------------------------- /install-libreoffice.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamca/GPT4oContentExtraction/HEAD/install-libreoffice.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamca/GPT4oContentExtraction/HEAD/requirements.txt -------------------------------------------------------------------------------- /schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamca/GPT4oContentExtraction/HEAD/schema.json -------------------------------------------------------------------------------- /test-query.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamca/GPT4oContentExtraction/HEAD/test-query.ipynb --------------------------------------------------------------------------------