├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── api_docs.md ├── app ├── __init__.py ├── __pycache__ │ ├── config.cpython-311.pyc │ ├── main.cpython-311.pyc │ └── mistral_ocr.cpython-311.pyc ├── celery_app.py ├── config.py ├── converters │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── doc_converter.cpython-311.pyc │ │ ├── excel_converter.cpython-311.pyc │ │ ├── image_converter.cpython-311.pyc │ │ ├── pdf_converter.cpython-311.pyc │ │ └── txt_converter.cpython-311.pyc │ ├── doc_converter.py │ ├── excel_converter.py │ ├── image_converter.py │ ├── pdf_converter.py │ └── txt_converter.py ├── data │ ├── knowledge_graph.json │ └── state.json ├── main.py ├── streamlit_app.py └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-311.pyc │ ├── neo4j_handler.cpython-311.pyc │ ├── ocr_processor.cpython-311.pyc │ ├── qdrant_handler.cpython-311.pyc │ └── text_processor.cpython-311.pyc │ ├── helpers.py │ ├── ocr_processor.py │ ├── qdrant_handler.py │ └── text_processor.py ├── docker-compose.yml ├── env_example ├── init.sql └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/README.md -------------------------------------------------------------------------------- /api_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/api_docs.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/__pycache__/config.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/__pycache__/config.cpython-311.pyc -------------------------------------------------------------------------------- /app/__pycache__/main.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/__pycache__/main.cpython-311.pyc -------------------------------------------------------------------------------- /app/__pycache__/mistral_ocr.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/__pycache__/mistral_ocr.cpython-311.pyc -------------------------------------------------------------------------------- /app/celery_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/celery_app.py -------------------------------------------------------------------------------- /app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/config.py -------------------------------------------------------------------------------- /app/converters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/converters/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/converters/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /app/converters/__pycache__/doc_converter.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/converters/__pycache__/doc_converter.cpython-311.pyc -------------------------------------------------------------------------------- /app/converters/__pycache__/excel_converter.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/converters/__pycache__/excel_converter.cpython-311.pyc -------------------------------------------------------------------------------- /app/converters/__pycache__/image_converter.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/converters/__pycache__/image_converter.cpython-311.pyc -------------------------------------------------------------------------------- /app/converters/__pycache__/pdf_converter.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/converters/__pycache__/pdf_converter.cpython-311.pyc -------------------------------------------------------------------------------- /app/converters/__pycache__/txt_converter.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/converters/__pycache__/txt_converter.cpython-311.pyc -------------------------------------------------------------------------------- /app/converters/doc_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/converters/doc_converter.py -------------------------------------------------------------------------------- /app/converters/excel_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/converters/excel_converter.py -------------------------------------------------------------------------------- /app/converters/image_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/converters/image_converter.py -------------------------------------------------------------------------------- /app/converters/pdf_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/converters/pdf_converter.py -------------------------------------------------------------------------------- /app/converters/txt_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/converters/txt_converter.py -------------------------------------------------------------------------------- /app/data/knowledge_graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/data/knowledge_graph.json -------------------------------------------------------------------------------- /app/data/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/data/state.json -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/main.py -------------------------------------------------------------------------------- /app/streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/streamlit_app.py -------------------------------------------------------------------------------- /app/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/utils/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/utils/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /app/utils/__pycache__/neo4j_handler.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/utils/__pycache__/neo4j_handler.cpython-311.pyc -------------------------------------------------------------------------------- /app/utils/__pycache__/ocr_processor.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/utils/__pycache__/ocr_processor.cpython-311.pyc -------------------------------------------------------------------------------- /app/utils/__pycache__/qdrant_handler.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/utils/__pycache__/qdrant_handler.cpython-311.pyc -------------------------------------------------------------------------------- /app/utils/__pycache__/text_processor.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/utils/__pycache__/text_processor.cpython-311.pyc -------------------------------------------------------------------------------- /app/utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/utils/helpers.py -------------------------------------------------------------------------------- /app/utils/ocr_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/utils/ocr_processor.py -------------------------------------------------------------------------------- /app/utils/qdrant_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/utils/qdrant_handler.py -------------------------------------------------------------------------------- /app/utils/text_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/app/utils/text_processor.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /env_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/env_example -------------------------------------------------------------------------------- /init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/init.sql -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikantkode/pdfLLM/HEAD/requirements.txt --------------------------------------------------------------------------------