Spaces:
Sleeping
Sleeping
File size: 17,714 Bytes
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 | import cv2
import numpy as np
import base64
import json
from PIL import Image
from io import BytesIO
from itertools import groupby
from collections import Counter
from .base_processor import BaseScriptProcessor
from utils.image_utils import segment_hieroglyphs
from utils.text_utils import is_gibberish, build_description_from_codes
from config import Config
class EgyptianProcessor(BaseScriptProcessor):
def __init__(self, groq_client, references, clip_classifier, translator_pipe):
super().__init__(groq_client, references)
self.clip_classifier = clip_classifier
self.translator_pipe = translator_pipe
self.config = Config()
def detect_script(self, image_path):
"""Simplified detection - Groq Vision handles main classification"""
try:
print("[INFO] Egyptian processor activated by Groq Vision (Llama-4-Scout)")
return True, 0.95
except Exception as e:
print(f"[ERROR] Egyptian detection failed: {e}")
return False, 0.0
def _identify_hieroglyphs_with_vision(self, image_path):
"""Use Groq Vision (Llama-4-Scout) to identify hieroglyphic symbols from the full image."""
if not self.groq_client or not self.groq_client.is_available():
return None
try:
from groq import Groq
# Load and encode image
image = Image.open(image_path)
if max(image.size) > 1200:
image.thumbnail((1200, 1200), Image.Resampling.LANCZOS)
buffer = BytesIO()
image.save(buffer, format="JPEG", quality=90)
b64 = base64.b64encode(buffer.getvalue()).decode("utf-8")
gardiner_labels = list(self.config.GARDINER_MAP.keys())
gardiner_codes = list(self.config.GARDINER_MAP.values())
label_list = ", ".join(
f"{lbl} ({code})" for lbl, code in zip(gardiner_labels, gardiner_codes)
)
prompt = (
"You are an expert Egyptologist analyzing an image of Egyptian hieroglyphs.\n\n"
f"Known Gardiner signs: {label_list}\n\n"
"Identify up to 15 of the most prominent hieroglyphic symbols visible in the image, in reading order (left-to-right, top-to-bottom).\n"
"For each identified symbol, pick the BEST matching Gardiner label from the list above.\n"
"Do not output more than 15 symbols. If a symbol doesn't match any known label, use \"unknown\".\n\n"
"Respond ONLY with a JSON object:\n"
"{\"symbols\": [\"label1\", \"label2\", \"label3\", ...]}\n"
"Example: {\"symbols\": [\"owl\", \"eye\", \"reed\", \"bread\", \"sun\"]}"
)
print("[INFO] Sending request to Groq Vision model meta-llama/llama-4-scout-17b-16e-instruct...")
client = Groq(api_key=self.groq_client.api_key)
completion = client.chat.completions.create(
model="meta-llama/llama-4-scout-17b-16e-instruct",
messages=[
{
"role": "user",
"content": [
{"type": "text", "text": prompt},
{
"type": "image_url",
"image_url": {
"url": f"data:image/jpeg;base64,{b64}",
},
},
],
}
],
temperature=0.1,
max_completion_tokens=1024,
response_format={"type": "json_object"},
)
raw = completion.choices[0].message.content
print(f"[INFO] Groq Vision raw response received: {raw[:150]}...")
data = json.loads(raw)
symbols = data.get("symbols", [])
if symbols and isinstance(symbols, list) and len(symbols) > 0:
# Validate labels against known set + "unknown"
valid = set(gardiner_labels) | {"unknown"}
cleaned = [s if s in valid else "unknown" for s in symbols]
if all(s == "unknown" for s in cleaned):
print("[INFO] Groq Vision identified only 'unknown' symbols. Falling back.")
return None
print(f"[INFO] Groq Vision identified {len(cleaned)} hieroglyphs: {cleaned}")
return cleaned
except Exception as e:
print(f"[WARN] Groq Vision hieroglyph identification failed: {e}")
return None
def extract_text(self, image_path):
"""Extract hieroglyphs — Groq Vision primary, CLIP fallback"""
try:
print("[INFO] Starting Egyptian hieroglyph extraction...")
# PRIMARY: Use Groq Vision to identify symbols from the full image
vision_labels = self._identify_hieroglyphs_with_vision(image_path)
if vision_labels:
print(f"[INFO] Using Groq Vision result ({len(vision_labels)} symbols)")
return vision_labels
# FALLBACK: Segment + CLIP zero-shot
print("[INFO] Falling back to CLIP segmentation-based classification...")
from utils.image_utils import segment_hieroglyphs
crops = segment_hieroglyphs(image_path)
print(f"[INFO] Segmented {len(crops)} hieroglyph regions")
if not crops:
print("[WARN] No hieroglyph regions found")
return []
candidate_labels = list(self.config.GARDINER_MAP.keys())
labels = self.clip_classifier.classify_symbols(crops, candidate_labels)
print(f"[INFO] CLIP classified {len(labels)} symbols: {labels}")
return labels
except Exception as e:
print(f"[ERROR] Egyptian text extraction failed: {e}")
import traceback
traceback.print_exc()
return []
def process_text(self, labels):
"""Process hieroglyph labels into translation"""
if not labels:
return {"labels": [], "codes": [], "translation": "", "translation_ok": False}
# Convert labels to Gardiner codes
codes = [self.config.GARDINER_MAP.get((lbl or "").lower(), "?") for lbl in labels]
# Attempt translation
translation, translation_ok = self._translate_sequence(labels, codes)
return {
"labels": labels,
"codes": codes,
"translation": translation,
"translation_ok": translation_ok
}
def _translate_sequence(self, labels, codes):
"""Translate Gardiner sequence using HuggingFace model or Groq fallback"""
valid_codes = [c for c in codes if c != "?"]
if valid_codes and self.translator_pipe:
seq = " ".join(valid_codes)
prompt = f"Translate hieroglyph unicode sequence to English: {seq}"
try:
output = self.translator_pipe(prompt, max_new_tokens=128, do_sample=False, num_beams=4)
text = output[0].get('generated_text') or output[0].get('translation_text') or str(output[0])
if text and text.strip() != "?" and not is_gibberish(text):
return text.strip(), True
# Try alternative approach
alt_output = self.translator_pipe(seq, max_new_tokens=128, do_sample=False, num_beams=4)
alt_text = alt_output[0].get('generated_text') or alt_output[0].get('translation_text') or str(alt_output[0])
if alt_text and alt_text.strip() != "?" and not is_gibberish(alt_text):
return alt_text.strip(), True
except Exception as e:
print(f"[WARN] Seq2Seq translation failed: {e}")
# Groq Fallback for translating known symbols
if self.groq_client and self.groq_client.is_available():
try:
known_labels = [lbl for lbl in labels if lbl and lbl != "unknown"]
if known_labels:
symbols_str = ", ".join(known_labels)
system_prompt = "You are an expert Egyptologist and translator of ancient Egyptian hieroglyphs."
user_prompt = (
f"We detected a sequence of ancient Egyptian hieroglyphic symbols: {symbols_str}.\n"
"Provide a concise, scholarly English translation or logical interpretation of this combination of signs.\n"
"Keep it direct, under 15 words, and do not include any introductory phrases, explanations, or quotes."
)
translation = self.groq_client.generate_response(system_prompt, user_prompt, max_tokens=64)
translation = translation.strip().replace('"', '')
if translation and not is_gibberish(translation):
return translation, True
except Exception as e:
print(f"[WARN] Groq fallback translation failed: {e}")
# Fallback to description
description = build_description_from_codes(codes)
return f"(Symbols described as: {description})", False
def generate_historical_context(self, processed_result):
"""Generate historical context for Egyptian text"""
translation = processed_result.get("translation", "")
codes = processed_result.get("codes", [])
labels = processed_result.get("labels", [])
# Generate Groq context
groq_detail = self._generate_groq_context(translation, codes)
# Build references
query_terms = list(labels) + list(codes)
refs = self.rag_service.retrieve_grounding_list(query_terms, max_results=6)
# Build structured context
return {
"uses_box": {
"title": "Each symbol's possible use by the egyptian people",
"items": self._build_uses_list(labels)
},
"meaning_box": self._build_meaning_box(labels, groq_detail),
"references": refs
}
def _generate_groq_context(self, translation_text, codes):
"""Generate contextual information using Groq"""
if not self.groq_client.is_available():
return "(Groq unavailable) Context generation requires GROQ_API_KEY and groq package."
if is_gibberish(translation_text):
prompt_body = build_description_from_codes(codes)
prompt = (
f"The following sequence of ancient Egyptian symbols is described as: {prompt_body}.\n\n"
"Provide a concise, scholarly paragraph (6-10 sentences) covering cultural context, symbolic meanings, "
"typical usage, probable time period, and relevant archaeological comparisons. Avoid repeating the prompt."
)
else:
prompt = (
f"Provide a concise, scholarly paragraph (6-10 sentences) on the historical significance, cultural context, "
f"symbolism, and possible interpretations of this ancient Egyptian text: {translation_text}. Avoid repeating the prompt."
)
system_prompt = "You are a careful Egyptologist and historian. Provide accurate, concise scholarly context."
enriched_system_prompt = self.rag_service.enrich_prompt(system_prompt, translation_text, codes)
return self.groq_client.generate_response(
system_prompt=enriched_system_prompt,
user_prompt=prompt,
max_tokens=self.config.GROQ_CONTEXT_MAX_TOKENS
) or "(context unavailable due to Groq error)"
def _build_uses_list(self, labels):
"""Build list of symbol uses"""
groups = []
for key, g in groupby(labels):
if not key:
continue
groups.append((key, len(list(g))))
notes = self.references.get("egypt_symbol_notes", {}) or {}
seen = set()
items = []
for name, count in groups:
if not name or name.lower() in seen:
continue
seen.add(name.lower())
count_str = f" (x{count})" if count > 1 else ""
note = notes.get(name.lower(), "Common sign whose meaning varies by phonetic/ideogram/determinative roles.")
items.append(f"- {name}{count_str}: {note}")
if not items:
items.append("- unknown: No stable mapping; likely decorative or damaged glyphs.")
return items
def _build_meaning_box(self, labels, groq_detail):
"""Build meaning interpretation box"""
freq = Counter([l for l in labels if l])
frequent = [f"{name} (x{cnt})" for name, cnt in freq.most_common(6)]
intro_lines = [
"The dense recurrence of signs suggests a formulaic or protective sequence, where phonograms articulate a core utterance and determinatives or iconic signs reinforce ritual intent.",
"Comparable sequences appear on funerary equipment from the Middle Kingdom onward."
]
points = [
"• Offering and action signs (bread, jar, hoe, bow) commonly structure invocations or provisioning lists for the afterlife.",
"• Repetition often encodes names or epithets; determinatives (eye, feather, god_figure) frame a protective or ritual context.",
"• Repertoire and layout align with New Kingdom funerary practice focused on protection, sustenance, and legitimation."
]
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": "Frequently observed signs",
"frequent": frequent,
"points": points
}
def generate_story(self, processed_result):
"""Generate creative story for Egyptian text"""
labels = processed_result.get("labels", [])
description = ", ".join([lbl for lbl in labels if lbl])
if not self.groq_client.is_available():
return self._simple_templated_story(description)
style = [
"as an epic poem from a wandering bard",
"as a prophecy carved in stone",
"as a fireside tale with vivid emotions",
"as a dialogue between two ancient gods",
"as a lost papyrus narrative recovered from the sands",
"as a myth told by a court poet"
]
import random
chosen_style = random.choice(style)
seed = random.randint(1000, 9999)
prompt = (
f"The following sequence of ancient Egyptian symbols is described as: {description}\n\n"
f"Can you create a long, vivid, imaginative story from ancient times "
f"based on this sequence of Egyptian symbols: [your sequence]. "
f"Write it as one rich paragraph with a lot of detail, mystery, and historical atmosphere. "
f"At least 200 words.\n\n"
f"Creative seed: {seed}\n"
f"Write a richly detailed, imaginative myth-like story {chosen_style}. "
"Include multiple characters, vivid imagery, and at least 3 short scenes. "
"Do NOT repeat the same sentence or phrase verbatim. "
"Keep it evocative and unpredictable."
)
system_prompt = "You are a creative ancient historian and myth-maker. Invent rich, imaginative tales."
story = self.groq_client.generate_response(
system_prompt=system_prompt,
user_prompt=prompt,
max_tokens=self.config.GROQ_STORY_MAX_TOKENS
)
if not story or is_gibberish(story):
return self._simple_templated_story(description)
return story
def _simple_templated_story(self, description):
"""Fallback story generation"""
import re
parts = [p.strip() for p in re.split(r',\s*', description) if p.strip()]
keywords = []
for p in parts:
m = re.match(r'([a-zA-Z0-9_-]+)', p)
if m:
kw = m.group(1)
if kw not in keywords:
keywords.append(kw)
if len(keywords) >= 8:
break
flavor = {
"bow": "strength and vigilance",
"hoe": "the work of the fields",
"reed": "the scribe's craft",
"owl": "hidden wisdom of the night",
"eye": "divine sight",
"bread": "offerings to the ka",
"unknown": "mysterious signs"
}
lead = []
if keywords:
lead.append(f"In an age of river and stone, a tale was told of {flavor.get(keywords[0], keywords[0])}.")
if len(keywords) > 1:
second = flavor.get(keywords[1], keywords[1])
third = flavor.get(keywords[2], keywords[2]) if len(keywords) > 2 else "omens"
lead.append(f"It spoke of {second} and {third} guiding a soul beyond the horizon.")
lead.append("Under the stars, elders whispered a vow that the names would endure.")
return " ".join(lead)
|