Files
dsProject/dsLightRag/Test/Test102.py

11 lines
262 B
Python
Raw Normal View History

2025-08-14 15:45:08 +08:00
from api.doubao_client import DoubaoClient
from core.ocr_service import OCRService
_doubao_client = DoubaoClient()
_ocr_service = OCRService(_doubao_client)
image_path = 'c:\math1.jpg'
ocr_result = _ocr_service.get_ocr(image_path)
print(ocr_result)