Spaces:
Runtime error
Runtime error
File size: 13,853 Bytes
4879a5b b97b788 4879a5b b97b788 4879a5b b97b788 4879a5b b97b788 4879a5b b97b788 4879a5b b97b788 4879a5b b97b788 4879a5b b97b788 4879a5b b97b788 4879a5b b97b788 4879a5b b97b788 4879a5b b97b788 4879a5b b97b788 4879a5b b97b788 4879a5b b97b788 4879a5b b97b788 4879a5b b97b788 4879a5b b97b788 4879a5b b97b788 4879a5b b97b788 4879a5b b97b788 4879a5b b97b788 4879a5b b97b788 4879a5b b97b788 98ea022 8de01c0 b97b788 98ea022 b97b788 98ea022 | 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 | """
app.py β MIC Translator Flask Backend
Clean routing layer using modular components.
"""
import os
import time
import traceback
from datetime import datetime
from flask import Flask, render_template, request, jsonify, Response
from flask_cors import CORS
os.environ["TOKENIZERS_PARALLELISM"] = "false"
from config import APP_TITLE, APP_VERSION, LANGUAGE_NAMES, NLLB_LANGS
from speech import SpeechRecognizer
from translator import Translator
from language_detector import LanguageDetector
from correction_engine import CorrectionEngine
from dataset_loader import DatasetLoader
from tts import TextToSpeech
from history import TranslationHistory
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# FLASK SETUP
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
app = Flask(
__name__,
template_folder="templates",
static_folder="static"
)
CORS(app)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# INITIALIZE MODULES
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
speech = SpeechRecognizer()
translator = Translator()
detector = LanguageDetector()
corrector = CorrectionEngine()
datasets = DatasetLoader()
tts = TextToSpeech()
history = TranslationHistory()
def init_modules():
"""Load all modules at startup."""
print(f"\n{'='*50}")
print(f" {APP_TITLE} {APP_VERSION}")
print(f" Initializing modules...")
print(f"{'='*50}\n")
speech.load()
translator.load()
corrector.load()
datasets.load_all()
tts.load()
history.load()
lang_count = len(NLLB_LANGS)
print(f"\n{'='*50}")
print(f" [OK] All modules loaded!")
print(f" Languages: {lang_count} supported")
print(f" Corrections: {corrector.get_stats()['total']} loaded")
print(f" Datasets: {datasets.get_stats()['total_pairs']} pairs loaded")
print(f" Voices: {len(tts.get_available_voices())} voice models")
print(f"{'='*50}\n")
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# ROUTES β Pages
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.route("/")
def home():
return render_template("index.html")
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# ROUTES β API
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.route("/api/test")
def api_test():
return jsonify({"success": True, "message": "Backend working"})
@app.route("/api/status")
def api_status():
return jsonify({
"whisper_ready": speech.ready,
"translator_ready": translator.ready,
"tts_ready": tts.ready,
"corrections_loaded": corrector.loaded,
"language_count": len(NLLB_LANGS),
"voice_count": len(tts.get_available_voices()),
"dataset_stats": datasets.get_stats(),
"correction_stats": corrector.get_stats(),
"version": APP_VERSION
})
# ββ Languages ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.route("/api/languages")
def api_languages():
"""Return all supported languages with metadata."""
languages = {}
for code, name in sorted(LANGUAGE_NAMES.items(), key=lambda x: x[1]):
languages[code] = {
"name": name,
"nllb_code": NLLB_LANGS.get(code, ""),
"has_voice": code in tts.get_available_voices()
}
return jsonify(languages)
@app.route("/api/languages/favorites")
def api_get_favorites():
return jsonify({
"favorites": history.get_favorites(),
"recent": history.get_recent_langs()
})
@app.route("/api/languages/favorites", methods=["POST"])
def api_set_favorite():
data = request.get_json()
action = data.get("action", "add")
lang = data.get("lang_code", "")
if action == "add":
history.add_favorite(lang)
elif action == "remove":
history.remove_favorite(lang)
return jsonify({"success": True, "favorites": history.get_favorites()})
# ββ Transcribe (Speech-to-Text) ββββββββββββββββββββββββββββββββββββββββββββββ
@app.route("/api/transcribe", methods=["POST"])
def api_transcribe():
"""Transcribe audio to text using Whisper."""
if "audio" not in request.files:
return jsonify({"error": "No audio file provided"}), 400
audio = request.files["audio"]
source_lang = request.form.get("source_lang", None)
# Don't force language if "auto" is selected
if source_lang == "auto":
source_lang = None
temp_file = "temp_audio.wav"
try:
audio.save(temp_file)
result = speech.transcribe(temp_file, language=source_lang)
# Apply pre-translation corrections
if result.get("text"):
detected_lang = result.get("language", "en")
correction = corrector.pre_translate(result["text"], detected_lang)
result["corrected_text"] = correction["text"]
result["corrections"] = correction["corrections"]
result["correction_count"] = correction["correction_count"]
else:
result["corrected_text"] = ""
result["corrections"] = []
result["correction_count"] = 0
return jsonify(result)
except Exception as e:
traceback.print_exc()
return jsonify({"error": str(e)}), 500
finally:
if os.path.exists(temp_file):
try:
os.unlink(temp_file)
except OSError:
pass
# ββ Translate ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.route("/api/translate", methods=["POST"])
def api_translate():
"""
Full translation pipeline:
Text β Pre-correction β Language Detection β NLLB Translation
β Post-correction β Validation β History β Response
"""
data = request.get_json()
text = data.get("text", "").strip()
source_lang = data.get("source_lang", "auto")
target_lang = data.get("target_lang", "en")
if not text:
return jsonify({"error": "No text provided"}), 400
pipeline_start = time.time()
# 1. Detect source language if "auto"
if source_lang == "auto":
detection = detector.detect_from_text(text)
source_lang = detection["language"]
detection_confidence = detection["confidence"]
detection_method = detection["method"]
else:
detection_confidence = 1.0
detection_method = "manual"
# 2. Pre-translation correction
pre_result = corrector.pre_translate(text, source_lang)
corrected_text = pre_result["text"]
# 3. NLLB Translation
trans_result = translator.translate(corrected_text, source_lang, target_lang)
translated_text = trans_result.get("translated", corrected_text)
# 4. Post-translation correction
post_result = corrector.post_translate(translated_text, source_lang, target_lang)
final_text = post_result["text"]
# 5. Validate against datasets (if available)
validation = datasets.validate_translation(
text, final_text, source_lang, target_lang
)
total_time = round((time.time() - pipeline_start) * 1000)
# 6. Build response
result = {
"original": text,
"corrected": corrected_text,
"translated": final_text,
"source_lang": source_lang,
"source_lang_name": LANGUAGE_NAMES.get(source_lang, source_lang),
"target_lang": target_lang,
"target_lang_name": LANGUAGE_NAMES.get(target_lang, target_lang),
"timestamp": datetime.now().strftime("%H:%M:%S"),
"time_ms": total_time,
"translation_time_ms": trans_result.get("time_ms", 0),
"detection": {
"language": source_lang,
"confidence": detection_confidence,
"method": detection_method
},
"pre_corrections": pre_result["corrections"],
"post_corrections": post_result["corrections"],
"validation": validation,
"error": trans_result.get("error")
}
# 7. Save to history
history.add(result)
return jsonify(result)
# ββ Text-to-Speech βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.route("/api/tts", methods=["POST"])
def api_tts():
"""Convert text to speech using Piper (offline)."""
data = request.get_json()
text = data.get("text", "").strip()
lang_code = data.get("lang_code", "en")
if not text:
return jsonify({"error": "No text"}), 400
result = tts.synthesize(text, lang_code)
# Cleanup old files periodically
tts.cleanup_old_audio()
return jsonify(result)
@app.route("/api/tts/voices")
def api_tts_voices():
"""Return available TTS voice models."""
return jsonify(tts.get_stats())
# ββ History ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.route("/api/history")
def api_history():
limit = request.args.get("limit", 50, type=int)
return jsonify(history.get_all(limit))
@app.route("/api/history/stats")
def api_history_stats():
return jsonify(history.get_stats())
@app.route("/api/history/search")
def api_history_search():
query = request.args.get("q", "")
return jsonify(history.search(query))
@app.route("/api/clear", methods=["POST"])
def api_clear():
history.clear()
return jsonify({"success": True})
@app.route("/api/history/export")
def api_export_history():
"""Export history as JSON or CSV."""
fmt = request.args.get("format", "json")
if fmt == "csv":
csv_data = history.export_csv()
return Response(
csv_data,
mimetype="text/csv",
headers={"Content-Disposition": "attachment; filename=translation_history.csv"}
)
else:
json_data = history.export_json()
return Response(
json_data,
mimetype="application/json",
headers={"Content-Disposition": "attachment; filename=translation_history.json"}
)
# ββ Corrections ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.route("/api/corrections/stats")
def api_corrections_stats():
return jsonify(corrector.get_stats())
@app.route("/api/corrections/add", methods=["POST"])
def api_add_correction():
"""Add a new correction entry."""
data = request.get_json()
success = corrector.add_correction(
category=data.get("category", "slang"),
wrong=data.get("wrong", ""),
correct=data.get("correct", ""),
domain=data.get("domain")
)
return jsonify({"success": success})
# ββ Datasets βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.route("/api/datasets/stats")
def api_datasets_stats():
return jsonify(datasets.get_stats())
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# MAIN
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if __name__ == "__main__":
init_modules()
port = int(os.environ.get("PORT", 5000))
# Force port 7860 on Hugging Face Spaces (required by Gradio SDK)
if "SPACE_ID" in os.environ:
port = 7860
print(f"\n{'='*50}")
print(f" {APP_TITLE} {APP_VERSION}")
print(f" http://127.0.0.1:{port}")
print(f"{'='*50}\n")
app.run(host="0.0.0.0", port=port, debug=False) |