├── .gitignore ├── Dockerfile ├── Dockerfile.dev ├── LICENSE ├── README.md ├── assets └── robot-painting-a-landscape.png ├── doc2image ├── __init__.py ├── api.py ├── configs │ ├── config.yaml │ ├── parser │ │ └── default.yaml │ ├── pipeline │ │ └── default.yaml │ └── prompts │ │ └── default.yaml ├── database │ ├── __init__.py │ ├── models.py │ └── query.py ├── docs │ ├── __init__.py │ ├── chunkenizer.py │ ├── parser.py │ └── text_splitter.py ├── llm │ ├── __init__.py │ ├── base.py │ ├── ollama.py │ └── openai.py ├── pipeline.py ├── prompt.py ├── schemas.py └── ui │ ├── __init__.py │ ├── app │ ├── Home.py │ └── pages │ │ ├── 1_Generate_Image_Ideas.py │ │ ├── 2_Idea_Gallery.py │ │ └── 3_⚙️_Settings.py │ ├── rendering.py │ └── utils.py ├── docker-compose.dev.yml ├── docker-compose.yml └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/Dockerfile.dev -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/README.md -------------------------------------------------------------------------------- /assets/robot-painting-a-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/assets/robot-painting-a-landscape.png -------------------------------------------------------------------------------- /doc2image/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc2image/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/api.py -------------------------------------------------------------------------------- /doc2image/configs/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/configs/config.yaml -------------------------------------------------------------------------------- /doc2image/configs/parser/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/configs/parser/default.yaml -------------------------------------------------------------------------------- /doc2image/configs/pipeline/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/configs/pipeline/default.yaml -------------------------------------------------------------------------------- /doc2image/configs/prompts/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/configs/prompts/default.yaml -------------------------------------------------------------------------------- /doc2image/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/database/__init__.py -------------------------------------------------------------------------------- /doc2image/database/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/database/models.py -------------------------------------------------------------------------------- /doc2image/database/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/database/query.py -------------------------------------------------------------------------------- /doc2image/docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/docs/__init__.py -------------------------------------------------------------------------------- /doc2image/docs/chunkenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/docs/chunkenizer.py -------------------------------------------------------------------------------- /doc2image/docs/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/docs/parser.py -------------------------------------------------------------------------------- /doc2image/docs/text_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/docs/text_splitter.py -------------------------------------------------------------------------------- /doc2image/llm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/llm/__init__.py -------------------------------------------------------------------------------- /doc2image/llm/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/llm/base.py -------------------------------------------------------------------------------- /doc2image/llm/ollama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/llm/ollama.py -------------------------------------------------------------------------------- /doc2image/llm/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/llm/openai.py -------------------------------------------------------------------------------- /doc2image/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/pipeline.py -------------------------------------------------------------------------------- /doc2image/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/prompt.py -------------------------------------------------------------------------------- /doc2image/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/schemas.py -------------------------------------------------------------------------------- /doc2image/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc2image/ui/app/Home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/ui/app/Home.py -------------------------------------------------------------------------------- /doc2image/ui/app/pages/1_Generate_Image_Ideas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/ui/app/pages/1_Generate_Image_Ideas.py -------------------------------------------------------------------------------- /doc2image/ui/app/pages/2_Idea_Gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/ui/app/pages/2_Idea_Gallery.py -------------------------------------------------------------------------------- /doc2image/ui/app/pages/3_⚙️_Settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/ui/app/pages/3_⚙️_Settings.py -------------------------------------------------------------------------------- /doc2image/ui/rendering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/ui/rendering.py -------------------------------------------------------------------------------- /doc2image/ui/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/doc2image/ui/utils.py -------------------------------------------------------------------------------- /docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/docker-compose.dev.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylannalex/doc2image/HEAD/pyproject.toml --------------------------------------------------------------------------------