ocr improved

This commit is contained in:
2026-01-13 18:25:49 +08:00
parent 9745ca2476
commit a5eb381384
104 changed files with 818 additions and 229 deletions

9
test_query.py Normal file
View File

@@ -0,0 +1,9 @@
import requests
import json
try:
resp = requests.post("http://localhost:3015/query", json={"query": "test", "stream": False})
print(resp.status_code)
print(resp.text)
except Exception as e:
print(e)