diff --git a/code/utilities/helpers/ConfigHelper.py b/code/utilities/helpers/ConfigHelper.py index bb6473488..43cab0090 100644 --- a/code/utilities/helpers/ConfigHelper.py +++ b/code/utilities/helpers/ConfigHelper.py @@ -184,6 +184,24 @@ def get_default_config(): }, "loading": {"strategy": LoadingStrategy.DOCX}, }, + { + "document_type": "jpg", + "chunking": { + "strategy": ChunkingStrategy.LAYOUT, + "size": 500, + "overlap": 100, + }, + "loading": {"strategy": LoadingStrategy.LAYOUT}, + }, + { + "document_type": "png", + "chunking": { + "strategy": ChunkingStrategy.LAYOUT, + "size": 500, + "overlap": 100, + }, + "loading": {"strategy": LoadingStrategy.LAYOUT}, + }, ], "logging": {"log_user_interactions": True, "log_tokens": True}, "orchestrator": {"strategy": "openai_function"},