Spaces:
Sleeping
Sleeping
File size: 33,814 Bytes
2f4af3f 62db04d 2f4af3f 36331c6 2f4af3f 36331c6 2f4af3f 36331c6 2f4af3f 36331c6 2f4af3f 36331c6 2f4af3f 36331c6 2f4af3f 36331c6 2f4af3f 36331c6 2f4af3f 36331c6 2f4af3f 62db04d 2f4af3f 62db04d 2f4af3f 62db04d 2f4af3f 62db04d 2f4af3f 62db04d 2f4af3f 62db04d 2f4af3f 62db04d 2f4af3f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 | import pytesseract
import re
import os
import cv2
import numpy as np
import torch
from PIL import Image
from .base_processor import BaseScriptProcessor
from utils.text_utils import is_gibberish
BACKEND_MODELS_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "models"))
GREEK_TROCR_MODEL_DIR = os.path.join(BACKEND_MODELS_DIR, "greek_trocr")
class GreekProcessor(BaseScriptProcessor):
def __init__(self, groq_client, references, clip_classifier):
super().__init__(groq_client, references, clip_classifier)
self.clip_classifier = clip_classifier
self.setup_ancient_greek_ocr()
self.trocr_model = None
self.trocr_processor = None
self.trocr_available = False
self.device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
# Register for dynamic VRAM management
from utils.gpu_diagnostics import register_processor
register_processor("greek", self)
# Metrics for Greek Glossary
self.glossary_success_count = 0
self.glossary_json_failure_count = 0
self.regex_recovery_count = 0
def setup_greek_trocr(self):
"""Setup TrOCR model — BEST for ancient Greek manuscripts"""
try:
from utils.gpu_diagnostics import reclaim_vram_for
reclaim_vram_for("greek")
print("[INFO] Lazily loading TrOCR model for ancient Greek...")
from transformers import TrOCRProcessor, VisionEncoderDecoderModel
import torch
import os
HF_TOKEN = os.getenv("HF_TOKEN")
self.trocr_processor = TrOCRProcessor.from_pretrained(
'rithwikn/trocr_greek_combined',
cache_dir=GREEK_TROCR_MODEL_DIR,
local_files_only=False,
token=HF_TOKEN
)
self.trocr_model = VisionEncoderDecoderModel.from_pretrained(
'rithwikn/trocr_greek_combined',
cache_dir=GREEK_TROCR_MODEL_DIR,
local_files_only=False,
token=HF_TOKEN
)
self.trocr_model.to(self.device)
self.trocr_model.eval() # Put in evaluation mode
from utils.gpu_diagnostics import log_model_device
log_model_device("Greek TrOCR", self.device)
self.trocr_available = True
print(f"[INFO] Ancient Greek TrOCR loaded successfully on {self.device}")
except Exception as e:
print(f"[ERROR] Ancient Greek TrOCR failed to load: {e}")
self.trocr_available = False
def setup_ancient_greek_ocr(self):
"""Setup Ancient Greek OCR with Tesseract language check"""
try:
langs = pytesseract.get_languages(config='')
self.grc_available = "grc" in langs
if self.grc_available:
print("[INFO] Ancient Greek Tesseract language pack 'grc' is available")
else:
print("[WARN] Ancient Greek Tesseract language pack 'grc' is NOT available")
except Exception as e:
print(f"[ERROR] Failed to check Tesseract languages: {e}")
self.grc_available = False
def detect_script(self, image_path):
"""Simplified detection - Groq Vision handles main classification"""
try:
if not getattr(self, 'trocr_available', False):
# Check if Ancient Greek OCR is available as fallback
if not getattr(self, 'grc_available', False):
print("[INFO] Greek processor not available (neither TrOCR nor Tesseract)")
return False, 0.5
# If called by Groq Vision classification, accept with high confidence
print("[INFO] Greek processor activated by Groq Vision (Llama-4-Scout)")
return True, 0.95
except Exception as e:
print(f"[ERROR] Greek detection failed: {e}")
return False, 0.0
def _quick_greek_ocr_test(self, image_path):
"""Quick OCR test to validate Greek content"""
try:
# Quick test with small image crop
image = Image.open(image_path)
# Take center crop for testing
w, h = image.size
crop_box = (w//4, h//4, 3*w//4, 3*h//4)
test_crop = image.crop(crop_box)
# Test with standard Greek OCR
test_text = pytesseract.image_to_string(test_crop, lang="ell")
greek_char_count = self._count_greek_chars(test_text or "")
# If we find Greek characters, it's likely Greek
return greek_char_count >= 3
except Exception:
return False
def extract_text(self, image_path):
"""Enhanced Greek text extraction with TrOCR primary, Tesseract fallback"""
try:
image = Image.open(image_path)
# Ensure the Greek TrOCR model is loaded dynamically
if self.trocr_model is None:
self.setup_greek_trocr()
else:
from utils.gpu_diagnostics import reclaim_vram_for
reclaim_vram_for("greek")
if str(next(self.trocr_model.parameters()).device) != str(self.device):
print(f"[VRAM MANAGER] Activating Greek TrOCR model on {self.device}...")
self.trocr_model.to(self.device)
# Method 1: Ancient Greek TrOCR (if available)
if getattr(self, 'trocr_available', False) and self.trocr_model is not None:
print("[INFO] Attempting Ancient Greek extraction with TrOCR...")
trocr_text = self._extract_with_trocr(image_path)
if trocr_text and self._validate_greek_text(trocr_text):
print("[INFO] Using Ancient Greek TrOCR result")
return trocr_text
print("[WARN] TrOCR extraction returned poor quality result, trying Tesseract fallback...")
# Method 2: Ancient Greek OCR (if available and safe)
if getattr(self, 'grc_available', False):
ancient_greek_text = self._extract_with_ancient_greek_ocr(image)
if ancient_greek_text and self._validate_greek_text(ancient_greek_text):
print("[INFO] Using Ancient Greek OCR result")
return ancient_greek_text
# Method 3: Standard Greek OCR
standard_greek_text = self._extract_with_standard_greek_ocr(image)
if standard_greek_text and self._validate_greek_text(standard_greek_text):
print("[INFO] Using standard Greek OCR result")
return standard_greek_text
# Method 4: Layout-aware line segment fallback
print("[INFO] Trying layout-aware Greek segmentation fallback...")
layout_aware_greek_text = self._extract_layout_aware_ocr(image_path)
if layout_aware_greek_text and self._validate_greek_text(layout_aware_greek_text):
print("[INFO] Using layout-aware Greek OCR result")
return layout_aware_greek_text
# Method 5: Final validation - if no good Greek text found, return empty
print("[INFO] No valid Greek text detected")
return ""
except Exception as e:
print(f"[ERROR] Greek text extraction failed: {e}")
return ""
def _extract_with_trocr(self, image_path):
"""Extract text using TrOCR Ancient Greek model line-by-line"""
if self.trocr_model is None:
self.setup_greek_trocr()
else:
from utils.gpu_diagnostics import reclaim_vram_for
reclaim_vram_for("greek")
if str(next(self.trocr_model.parameters()).device) != str(self.device):
print(f"[VRAM MANAGER] Activating Greek TrOCR model on {self.device}...")
self.trocr_model.to(self.device)
if not getattr(self, 'trocr_available', False) or self.trocr_model is None:
return ""
try:
import torch
from PIL import Image
print("[INFO] Segmenting layout for Greek TrOCR...")
layout = self.layout_parser.analyze_layout(image_path)
crops = self.layout_parser.crop_lines(image_path, layout)
# Fallback to whole image if no crops detected
if not crops:
print("[WARN] No line crops found, processing full image with TrOCR")
crops = [Image.open(image_path).convert("RGB")]
line_texts = []
print(f"[INFO] Running Ancient Greek TrOCR inference on {len(crops)} crops...")
for idx, crop in enumerate(crops):
# Ensure RGB mode for TrOCR
crop_rgb = crop.convert("RGB")
pixel_values = self.trocr_processor(
images=crop_rgb,
return_tensors="pt"
).pixel_values.to(self.device)
with torch.inference_mode():
generated_ids = self.trocr_model.generate(
pixel_values,
max_length=256,
num_beams=4,
early_stopping=True,
repetition_penalty=1.2
)
text = self.trocr_processor.batch_decode(
generated_ids,
skip_special_tokens=True
)[0]
if text.strip():
line_texts.append(text.strip())
full_text = "\n".join(line_texts)
print(f"[SUCCESS] TrOCR extracted {len(line_texts)} lines from Greek image")
return full_text
except Exception as e:
print(f"[ERROR] Greek TrOCR extraction failed: {e}")
return ""
def _extract_with_ancient_greek_ocr(self, image):
"""Extract using specialized Ancient Greek OCR"""
try:
if not getattr(self, 'grc_available', False):
return ""
# Use ancient Greek language code 'grc' with optimized settings
config = "--psm 6 --oem 1 -c preserve_interword_spaces=1"
# Try ancient Greek language pack
text = pytesseract.image_to_string(
image,
lang="grc", # Ancient Greek language code
config=config
)
return text.strip()
except Exception as e:
print(f"[WARN] Ancient Greek OCR failed: {e}")
return ""
def _extract_layout_aware_ocr(self, image_path):
"""Extract text by segmenting the page layout into lines first for improved readability order"""
try:
import pytesseract
print("[INFO] Running layout-aware line segmentation for Greek...")
layout = self.layout_parser.analyze_layout(image_path)
crops = self.layout_parser.crop_lines(image_path, layout)
if not crops:
print("[WARN] Layout parser returned no line crops for Greek")
return ""
print(f"[INFO] Layout-aware Greek line parser cropped {len(crops)} lines")
line_texts = []
# Try to use Ancient Greek first
use_grc = getattr(self, 'grc_available', False)
try:
for idx, crop in enumerate(crops):
# Enhance line crop for OCR
crop_cv = cv2.cvtColor(np.array(crop), cv2.COLOR_RGB2BGR)
gray = cv2.cvtColor(crop_cv, cv2.COLOR_BGR2GRAY)
clahe = cv2.createCLAHE(clipLimit=2.5, tileGridSize=(4,4))
enhanced = clahe.apply(gray)
crop_pil = Image.fromarray(enhanced)
config = '--oem 3 --psm 7'
text = ""
if use_grc:
text = pytesseract.image_to_string(
crop_pil,
lang='grc',
config=config
).strip()
if not text:
text = pytesseract.image_to_string(
crop_pil,
lang='ell',
config=config
).strip()
if text:
line_texts.append(text)
finally:
pass
return "\n".join(line_texts)
except Exception as e:
print(f"[WARN] Layout aware Greek OCR failed: {e}")
return ""
def _extract_with_standard_greek_ocr(self, image):
"""Extract using standard Greek OCR with optimized settings"""
try:
# Multiple OCR attempts with different settings
configs = [
"--psm 6 --oem 1", # Uniform text block
"--psm 4 --oem 1", # Single column text
"--psm 3 --oem 1", # Default, automatic page segmentation
"--psm 8 --oem 1" # Single word
]
for config in configs:
try:
text = pytesseract.image_to_string(
image,
lang="ell", # Modern Greek
config=config
)
if text and self._validate_greek_text(text):
return text.strip()
except Exception:
continue
return ""
except Exception as e:
print(f"[WARN] Standard Greek OCR failed: {e}")
return ""
def _extract_with_preprocessing(self, image):
"""Fallback extraction with image preprocessing"""
try:
# Convert PIL to CV2
cv_image = cv2.cvtColor(np.array(image), cv2.COLOR_RGB2BGR)
# Image preprocessing for better OCR
gray = cv2.cvtColor(cv_image, cv2.COLOR_BGR2GRAY)
# Try different preprocessing approaches
preprocessed_images = [
gray, # Original grayscale
cv2.GaussianBlur(gray, (1, 1), 0), # Slight blur
cv2.medianBlur(gray, 3), # Noise reduction
cv2.threshold(gray, 0, 255, cv2.THRESH_BINARY + cv2.THRESH_OTSU)[1] # Adaptive threshold
]
for processed_img in preprocessed_images:
try:
pil_img = Image.fromarray(processed_img)
text = pytesseract.image_to_string(
pil_img,
lang="ell",
config="--psm 6 --oem 1"
)
if self._validate_greek_text(text):
return text.strip()
except Exception:
continue
return ""
except Exception as e:
print(f"[WARN] Fallback Greek OCR failed: {e}")
return ""
def _count_greek_chars(self, text):
"""Count Greek Unicode characters including polytonic marks"""
if not text:
return 0
def is_greek_char(ch):
o = ord(ch)
# Greek and Coptic (0x0370-0x03FF)
# Greek Extended (0x1F00-0x1FFF) - includes polytonic marks
return (0x0370 <= o <= 0x03FF) or (0x1F00 <= o <= 0x1FFF)
return sum(is_greek_char(ch) for ch in text)
def _validate_greek_text(self, text):
"""Validate if text contains meaningful Greek content"""
if not text or len(text.strip()) < 3:
return False
# Count Greek characters
greek_char_count = self._count_greek_chars(text)
total_chars = len(re.sub(r'\s+', '', text))
if total_chars == 0:
return False
# Check for Latin characters (should reject if too many)
latin_chars = sum(c.isalpha() and c.lower() in "abcdefghijklmnopqrstuvwxyz" for c in text)
latin_ratio = latin_chars / total_chars if total_chars > 0 else 0
# If text is mostly Latin characters, reject it
if latin_ratio > 0.8 and greek_char_count < 3:
print(f"[INFO] Rejecting text as Greek - too many Latin chars: {latin_ratio:.2f}")
return False
# At least 20% should be Greek characters, or minimum 5 Greek chars
greek_ratio = greek_char_count / total_chars
return greek_char_count >= 5 or greek_ratio >= 0.20
def _extract_distinct_terms(self, text):
"""Extract distinct Greek terms from text"""
if not text:
return []
# Find Greek words (including those with diacritical marks)
tokens = re.findall(r"[^\W\d_]+", text, flags=re.UNICODE)
def is_greek_word(word):
return any((0x0370 <= ord(ch) <= 0x03FF) or (0x1F00 <= ord(ch) <= 0x1FFF)
for ch in word)
distinct_terms = []
seen = set()
for token in tokens:
if len(token) < 2: # Skip single characters
continue
if is_greek_word(token):
normalized = token.lower()
if normalized not in seen:
distinct_terms.append(token)
seen.add(normalized)
return distinct_terms[:20] # Limit to 20 terms
def process_text(self, greek_text):
"""Process extracted Greek text"""
if not greek_text:
return {"text": "", "terms": [], "char_analysis": {}, "validation": {}}
# Extract distinct terms
terms = self._extract_distinct_terms(greek_text)
# Character analysis
char_analysis = {
"total_chars": len(greek_text),
"greek_chars": self._count_greek_chars(greek_text),
"unique_chars": len(set(greek_text)),
"words": len(greek_text.split())
}
# Validation metrics
validation = {
"has_polytonic": self._has_polytonic_marks(greek_text),
"greek_ratio": char_analysis["greek_chars"] / max(1, char_analysis["total_chars"]),
"quality_score": self._calculate_quality_score(greek_text)
}
return {
"text": greek_text,
"terms": terms,
"char_analysis": char_analysis,
"validation": validation
}
def _has_polytonic_marks(self, text):
"""Check if text contains polytonic Greek marks"""
# Greek Extended block contains polytonic diacritical marks
return any(0x1F00 <= ord(ch) <= 0x1FFF for ch in text)
def _calculate_quality_score(self, text):
"""Calculate a quality score for the extracted text"""
if not text:
return 0.0
score = 0.0
# Base score from Greek character ratio
greek_ratio = self._count_greek_chars(text) / max(1, len(text))
score += greek_ratio * 0.4
# Bonus for polytonic marks (indicates authentic ancient Greek)
if self._has_polytonic_marks(text):
score += 0.3
# Penalty for too many non-alphabetic characters
alpha_chars = sum(ch.isalpha() for ch in text)
alpha_ratio = alpha_chars / max(1, len(text))
score += alpha_ratio * 0.3
return min(1.0, score)
def generate_historical_context(self, processed_result):
"""Generate historical context for Greek text"""
greek_text = processed_result.get("text", "")
terms = processed_result.get("terms", [])
# Generate Groq context
groq_detail = self._generate_groq_context(greek_text)
# Build references - query both words and individual characters
query_terms = list(terms) if terms else []
if greek_text:
query_terms.extend([char for char in greek_text if char.strip()])
print(f"[DEBUG GREEK RAG] query_terms: {[t.encode('ascii', 'backslashreplace').decode() for t in query_terms]}")
refs = self.rag_service.retrieve_grounding_list(query_terms, max_results=6)
print(f"[DEBUG GREEK RAG] refs: {[r['term'].encode('ascii', 'backslashreplace').decode() for r in refs]}")
return {
"uses_box": {
"title": "Each symbol's possible use by the Greek people",
"items": self._build_uses_list(terms, greek_text)
},
"meaning_box": self._build_meaning_box(terms, groq_detail),
"references": refs
}
def _generate_groq_context(self, greek_text):
"""Generate contextual information using Groq"""
if not self.groq_client.is_available():
return "(Groq unavailable) Context generation requires GROQ_API_KEY and groq package."
prompt = (
f"This ancient Greek text was found: {greek_text}\n\n"
"Write a concise, scholarly paragraph (6-10 sentences) giving cultural and historical context: textual tradition, "
"possible meanings, links to Greek culture/myth/philosophy, manuscript practices (accents, breathings, ligatures, nomina sacra), "
"and paleographic cues. Avoid repeating the prompt."
)
system_prompt = "You are an expert philologist of Ancient Greece. Provide concise, accurate scholarly context."
enriched_system_prompt = self.rag_service.enrich_prompt(system_prompt, greek_text)
return self.groq_client.generate_response(
system_prompt=enriched_system_prompt,
user_prompt=prompt
) or "(context unavailable due to Groq error)"
def _generate_batch_explanations(self, terms):
"""Generate scholarly glossary definitions for Greek terms in a single batch query"""
if not terms or not self.groq_client or not self.groq_client.is_available():
return {}
# Limit to first 15 terms to prevent token limit/truncation issues
terms_to_query = list(terms)[:15]
terms_list = ", ".join(terms_to_query)
system_prompt = (
"You are an expert classicist and lexicographer of Ancient Greek. "
"Return ONLY valid JSON matching the requested schema. "
"No markdown, no code fences (like ```json), no explanations, no prose."
)
user_prompt = (
f"For each of the following Ancient Greek words, provide a scholarly definition, "
f"etymological note, and grammatical gloss:\n\n"
f"Words: {terms_list}\n\n"
f"You MUST format the output as a single JSON object where the keys are the exact words "
f"and the values are objects containing 'definition', 'gloss', and 'etymology' keys.\n\n"
f"Output schema:\n"
f"{{\n"
f" \"TERM\": {{\n"
f" \"definition\": \"...\",\n"
f" \"gloss\": \"...\",\n"
f" \"etymology\": \"...\"\n"
f" }}\n"
f"}}\n"
)
try:
raw_response = self.groq_client.generate_response(
system_prompt=system_prompt,
user_prompt=user_prompt,
max_tokens=2048,
response_format={"type": "json_object"}
)
# Safe print to avoid UnicodeEncodeError in Windows command prompt
print(f"[INFO] Groq glossary raw response: {raw_response.encode('ascii', 'backslashreplace').decode()}")
# Find JSON block in response
json_str = raw_response.strip()
if "{" in json_str and "}" in json_str:
start = json_str.find("{")
end = json_str.rfind("}") + 1
json_str = json_str[start:end]
import json
definitions = {}
try:
definitions = json.loads(json_str)
self.glossary_success_count += 1
except Exception as je:
self.glossary_json_failure_count += 1
import logging
logger = logging.getLogger(__name__)
logger.warning(
"Malformed Greek glossary JSON",
extra={"response": raw_response[:2000]}
)
print(f"[WARN] Standard JSON load failed: {je}. Attempting regex recovery...")
# Regex recovery fallback
import re
self.regex_recovery_count += 1
term_blocks = re.findall(r'"([^"]+)"\s*:\s*\{([^}]+)\}', json_str)
for term, block in term_blocks:
def_match = re.search(r'"definition"\s*:\s*["\']([^"\']+)["\']', block)
gloss_match = re.search(r'"gloss"\s*:\s*["\']([^"\']+)["\']', block)
ety_match = re.search(r'"etymology"\s*:\s*["\']([^"\']+)["\']', block)
definitions[term] = {
"definition": def_match.group(1) if def_match else "",
"gloss": gloss_match.group(1) if gloss_match else "",
"etymology": ety_match.group(1) if ety_match else ""
}
return definitions
except Exception as e:
print(f"[WARN] Failed to generate batch Greek explanations: {e}")
return {}
def _build_uses_list(self, terms, greek_text):
"""Build list of symbol/word uses using RAG and batch Groq explanations"""
import unicodedata
items = []
# 1. Get definitions for the extracted Greek words (terms)
if terms:
# Unique terms preserving order
unique_terms = list(dict.fromkeys(terms))
# Limit to top 15 terms to be concise
unique_terms = unique_terms[:15]
print(f"[INFO] Generating glossary for {len(unique_terms)} Greek terms...")
definitions = {}
missing_terms = []
for term in unique_terms:
# Check RAG corpus (normalize search query)
norm_term = unicodedata.normalize('NFC', term).strip()
rag_matches = self.rag_service.retrieve_grounding_list([norm_term], max_results=1)
if rag_matches:
definitions[term] = rag_matches[0]["definition"]
else:
missing_terms.append(term)
# Generate remaining definitions with Groq in a single batch
if missing_terms:
groq_defs = self._generate_batch_explanations(missing_terms)
# Normalize groq keys for matching
normalized_groq_defs = {}
for k, v in groq_defs.items():
nk = unicodedata.normalize('NFC', k).strip().lower()
normalized_groq_defs[nk] = v
# Assign matching definitions
for term in missing_terms:
nt = unicodedata.normalize('NFC', term).strip().lower()
if nt in normalized_groq_defs:
definitions[term] = normalized_groq_defs[nt]
else:
# Case/accent insensitive backup match (in case Groq stripped accents)
import unicodedata as ud
def strip_accents(s):
return "".join(c for c in ud.normalize('NFD', s) if ud.category(c) != 'Mn')
stripped_t = strip_accents(nt)
for gk, gv in normalized_groq_defs.items():
if strip_accents(gk) == stripped_t:
definitions[term] = gv
break
for term in unique_terms:
definition = definitions.get(term)
if not definition:
definition = f"Ancient Greek lexical term. Characterized by specific diacritics and phonological values."
elif isinstance(definition, dict):
parts = []
d_val = definition.get("definition", "").strip()
g_val = definition.get("gloss", "").strip()
e_val = definition.get("etymology", "").strip()
if d_val:
parts.append(d_val)
if g_val:
parts.append(f"Gloss: {g_val}")
if e_val:
parts.append(f"Etymology: {e_val}")
definition = " | ".join(parts) if parts else "Ancient Greek lexical term."
items.append(f"{term}: {definition}")
# 2. Add significant paleographical/character markers found in the text if they are in the references
notes = self.references.get("greek_symbol_notes", {}) or {}
seen_chars = set()
char_items = []
for ch in greek_text:
if ch in notes and ch not in seen_chars:
seen_chars.add(ch)
char_items.append(f"Character '{ch}': {notes[ch]}")
# Limit character notes to prevent clutter
items.extend(char_items[:5])
# Format as list items with bullets
formatted_items = [f"- {item}" for item in items]
if not formatted_items:
default_hint = self.references.get("greek_hint",
"Ancient Greek script marker; values are determined by polytonic diacritical marks.")
formatted_items.append(f"- —: {default_hint}")
return formatted_items
def _build_meaning_box(self, terms, groq_detail):
"""Build meaning interpretation box"""
intro_lines = [
"The lexical concentration suggests a connected passage with recurring words or themes, consistent with Greek manuscript traditions.",
"Scribal features such as accents/breathings, abbreviations, and marginal cues guide reading and assist with dating and genre identification."
]
points = [
"• Presence of nomina sacra, lection signs, or ekphonetic marks indicates liturgical usage; scholia imply classroom or commentary context.",
"• Orthographic variation (e.g., iotacism) and common ligatures inform palaeographic placement and regional practice.",
]
if groq_detail and isinstance(groq_detail, str) and groq_detail.strip():
points.append(groq_detail.strip())
return {
"title": "Possible meaning:",
"intro_lines": intro_lines,
"frequent_label": "Key terms noted",
"frequent": terms[:10],
"points": points
}
def generate_story(self, processed_result):
"""Generate creative story for Greek text"""
greek_text = processed_result.get("text", "")
if not self.groq_client.is_available():
return "Groq client unavailable, cannot generate story."
styles = [
"as an epic poem told by a travelling rhapsode",
"as a prophecy inscribed on the Oracle at Delphi",
"as a philosophical dialogue in the Academy",
"as a myth recounted by ancient storytellers",
"as a recovered scroll from the Library of Alexandria",
"as a hymn sung in honor of the gods"
]
import random
chosen_style = random.choice(styles)
seed = random.randint(1000, 9999)
prompt = (
f"The following ancient Greek text was found: {greek_text}\n\n"
f"Create a long, vivid, imaginative story from ancient Greek times "
f"based on this Greek text. Write it as one rich paragraph with "
f"much detail, mystery, and cultural atmosphere. At least 200 words.\n\n"
f"Creative seed: {seed}\n"
f"Write a detailed, imaginative myth-like story {chosen_style}. "
"Include multiple characters, rich imagery, and scenes. "
"Avoid repetition and keep it unpredictable."
)
system_prompt = "You are a learned ancient Greek storyteller and scholar of Hellenic culture."
story = self.groq_client.generate_response(
system_prompt=system_prompt,
user_prompt=prompt
)
if not story or is_gibberish(story):
return "Failed to create quality story; the ancient texts remain silent."
return story
|