17 lines
670 B
Python
17 lines
670 B
Python
import sys
|
|
import os
|
|
sys.path.append(os.path.join(os.getcwd(), 'docengine'))
|
|
|
|
from app.core.database import SessionLocal
|
|
from app.models.document import TemplateMatch
|
|
from app.models.template import DocumentFormat
|
|
|
|
db = SessionLocal()
|
|
matches = db.query(TemplateMatch).order_by(TemplateMatch.created_at.desc()).limit(10).all()
|
|
print(f"Found {len(matches)} matches.")
|
|
for m in matches:
|
|
fmt = db.query(DocumentFormat).filter(DocumentFormat.id == m.format_id).first()
|
|
fmt_name = fmt.name if fmt else 'Unknown'
|
|
print(f"Match: doc_id={m.document_id}, format_id={m.format_id}, name={fmt_name}, score={m.confidence_score}")
|
|
print(f"Details: {m.match_details}")
|