Skip to content

feat: RND-126: LLM-based OCR grounded with bounding boxes #351

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 13 commits into
base: master
Choose a base branch
from
3 changes: 2 additions & 1 deletion Dockerfile.app
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ RUN --mount=type=cache,target="/var/cache/apt",sharing=locked \
set -eux; \
apt-get update; \
apt-get upgrade -y; \
apt-get install --no-install-recommends -y procps; \
apt-get install --no-install-recommends -y \
procps tesseract-ocr tesseract-ocr-chi-sim tesseract-ocr-chi-tra tesseract-ocr-deu; \
apt-get autoremove -y

RUN --mount=type=cache,target=${PIP_CACHE_DIR},sharing=locked \
Expand Down
1 change: 1 addition & 0 deletions adala/skills/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
from .collection.rag import RAGSkill
from .collection.ontology_creation import OntologyCreator, OntologyMerger
from .collection.label_studio import LabelStudioSkill
from .collection.label_studio_image_ocr import LabelStudioSkillImageOCR
from ._base import Skill, TransformSkill, AnalysisSkill, SynthesisSkill
Loading
Loading