Reality123b commited on
Commit
d6feb80
·
verified ·
1 Parent(s): bcb2f2e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -43,7 +43,7 @@ def is_romanized_indic(text: str) -> bool:
43
 
44
  text_lower = text.lower()
45
  matches = sum(1 for pattern in bengali_patterns if re.search(pattern, text_lower))
46
- return matches >= 5 # Require at least 2 matches to consider it Bengali
47
 
48
  def translate_text(text: str, target_lang='en') -> tuple[str, str, bool]:
49
  """Translate text to target language, with more conservative translation logic."""
 
43
 
44
  text_lower = text.lower()
45
  matches = sum(1 for pattern in bengali_patterns if re.search(pattern, text_lower))
46
+ return matches >= 2 # Require at least 2 matches to consider it Bengali
47
 
48
  def translate_text(text: str, target_lang='en') -> tuple[str, str, bool]:
49
  """Translate text to target language, with more conservative translation logic."""