Spaces:
Running
Running
# tests/quick_azure_test.py | |
import os, json, sys | |
from pathlib import Path | |
sys.path.insert(0, str(Path(__file__).resolve().parents[1])) # add project root | |
from rag.ocr_azure import parse_passport_azure | |
with open("data/passports/12.png", "rb") as f: | |
profile = parse_passport_azure(f.read()) | |
print(json.dumps(profile, indent=2)) | |