#!/usr/bin/env python3 import sys sys.path.insert(0, '/root/.openclaw/workspace/venv/lib/python3.12/site-packages') import pytesseract from PIL import Image img_path = '/root/.openclaw/media/inbound/6a6106c3-4d5d-48b1-a0e8-30d1c49dc850.jpg' img = Image.open(img_path) text = pytesseract.image_to_string(img, lang='eng') print(text)