Feature: Remote OCR (Azure AI) (#10320)

This commit is contained in:
shamoon
2026-01-08 13:49:17 -08:00
committed by GitHub
parent cb5f09c04e
commit 58d88440f1
15 changed files with 410 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
from django.apps import AppConfig
from paperless_remote.signals import remote_consumer_declaration
class PaperlessRemoteParserConfig(AppConfig):
name = "paperless_remote"
def ready(self):
from documents.signals import document_consumer_declaration
document_consumer_declaration.connect(remote_consumer_declaration)
AppConfig.ready(self)