Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -18,7 +18,6 @@ def detect_language_script(text: str) -> tuple[str, str]:
|
|
18 |
# Use confidence threshold to avoid false detections
|
19 |
lang_detect = langdetect.detect_langs(text)
|
20 |
if lang_detect[0].prob > 0.8:
|
21 |
-
# Only accept high confidence detections
|
22 |
lang = lang_detect[0].lang
|
23 |
else:
|
24 |
lang = 'en' # Default to English if unsure
|
@@ -35,7 +34,6 @@ def detect_language_script(text: str) -> tuple[str, str]:
|
|
35 |
def is_romanized_indic(text: str) -> bool:
|
36 |
"""Check if text appears to be romanized Indic language.
|
37 |
More strict pattern matching."""
|
38 |
-
# Common Bengali romanized patterns with word boundaries
|
39 |
bengali_patterns = [
|
40 |
r'\b(ami|tumi|apni)\b', # Common pronouns
|
41 |
r'\b(ache|achen|thako|thaken)\b', # Common verbs
|
@@ -43,21 +41,18 @@ def is_romanized_indic(text: str) -> bool:
|
|
43 |
r'\b(ki|kothay|keno)\b' # Common question words
|
44 |
]
|
45 |
|
46 |
-
# Require multiple matches to confirm it's actually Bengali
|
47 |
text_lower = text.lower()
|
48 |
matches = sum(1 for pattern in bengali_patterns if re.search(pattern, text_lower))
|
49 |
return matches >= 2 # Require at least 2 matches to consider it Bengali
|
50 |
|
51 |
def translate_text(text: str, target_lang='en') -> tuple[str, str, bool]:
|
52 |
"""Translate text to target language, with more conservative translation logic."""
|
53 |
-
# Skip translation for very short inputs or basic greetings
|
54 |
if len(text.split()) <= 2 or text.lower() in ['hello', 'hi', 'hey']:
|
55 |
return text, 'en', False
|
56 |
|
57 |
original_lang, script = detect_language_script(text)
|
58 |
is_transliterated = False
|
59 |
|
60 |
-
# Only process if confident it's non-English
|
61 |
if original_lang != 'en' and len(text.split()) > 2:
|
62 |
try:
|
63 |
translator = GoogleTranslator(source='auto', target=target_lang)
|
@@ -67,7 +62,6 @@ def translate_text(text: str, target_lang='en') -> tuple[str, str, bool]:
|
|
67 |
print(f"Translation error: {e}")
|
68 |
return text, 'en', False
|
69 |
|
70 |
-
# Check for romanized Indic text only if it's a longer input
|
71 |
if original_lang == 'en' and len(text.split()) > 2 and is_romanized_indic(text):
|
72 |
text = romanized_to_bengali(text)
|
73 |
return translate_text(text, target_lang) # Recursive call with Bengali script
|
@@ -117,17 +111,19 @@ def generate_image(prompt: str) -> str:
|
|
117 |
response = image_client.text_to_image(
|
118 |
prompt,
|
119 |
parameters={
|
120 |
-
"negative_prompt": "
|
121 |
"num_inference_steps": 30,
|
122 |
-
"guidance_scale": 7.5
|
|
|
|
|
|
|
123 |
}
|
124 |
)
|
125 |
-
#
|
126 |
-
# Note: Implementation depends on how you want to handle the image output
|
127 |
-
return response
|
128 |
except Exception as e:
|
129 |
print(f"Image generation error: {e}")
|
130 |
return None
|
|
|
131 |
def romanized_to_bengali(text: str) -> str:
|
132 |
"""Convert romanized Bengali text to Bengali script."""
|
133 |
bengali_mappings = {
|
@@ -171,20 +167,17 @@ def respond(
|
|
171 |
return
|
172 |
|
173 |
# Check if this is an image generation request
|
|
|
|
|
174 |
if is_image_request(message):
|
175 |
try:
|
176 |
image = generate_image(message)
|
177 |
if image:
|
178 |
-
|
179 |
-
# You'll need to implement the actual image display logic
|
180 |
-
# depending on your Gradio interface requirements
|
181 |
-
return
|
182 |
else:
|
183 |
-
|
184 |
-
return
|
185 |
except Exception as e:
|
186 |
-
|
187 |
-
return
|
188 |
|
189 |
# Handle translation with more conservative approach
|
190 |
translated_msg, original_lang, was_transliterated = translate_text(message)
|
|
|
18 |
# Use confidence threshold to avoid false detections
|
19 |
lang_detect = langdetect.detect_langs(text)
|
20 |
if lang_detect[0].prob > 0.8:
|
|
|
21 |
lang = lang_detect[0].lang
|
22 |
else:
|
23 |
lang = 'en' # Default to English if unsure
|
|
|
34 |
def is_romanized_indic(text: str) -> bool:
|
35 |
"""Check if text appears to be romanized Indic language.
|
36 |
More strict pattern matching."""
|
|
|
37 |
bengali_patterns = [
|
38 |
r'\b(ami|tumi|apni)\b', # Common pronouns
|
39 |
r'\b(ache|achen|thako|thaken)\b', # Common verbs
|
|
|
41 |
r'\b(ki|kothay|keno)\b' # Common question words
|
42 |
]
|
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."""
|
|
|
50 |
if len(text.split()) <= 2 or text.lower() in ['hello', 'hi', 'hey']:
|
51 |
return text, 'en', False
|
52 |
|
53 |
original_lang, script = detect_language_script(text)
|
54 |
is_transliterated = False
|
55 |
|
|
|
56 |
if original_lang != 'en' and len(text.split()) > 2:
|
57 |
try:
|
58 |
translator = GoogleTranslator(source='auto', target=target_lang)
|
|
|
62 |
print(f"Translation error: {e}")
|
63 |
return text, 'en', False
|
64 |
|
|
|
65 |
if original_lang == 'en' and len(text.split()) > 2 and is_romanized_indic(text):
|
66 |
text = romanized_to_bengali(text)
|
67 |
return translate_text(text, target_lang) # Recursive call with Bengali script
|
|
|
111 |
response = image_client.text_to_image(
|
112 |
prompt,
|
113 |
parameters={
|
114 |
+
"negative_prompt": "(worst quality, low quality, illustration, 3d, 2d, painting, cartoons, sketch), open mouth",
|
115 |
"num_inference_steps": 30,
|
116 |
+
"guidance_scale": 7.5,
|
117 |
+
"sampling_steps": 15, # Adjusted parameter
|
118 |
+
"upscaler": "4x-UltraSharp",
|
119 |
+
"denoising_strength": 0.5, # Denoising strength between 0.1 and 0.5
|
120 |
}
|
121 |
)
|
122 |
+
return response # Assuming response contains the image as required
|
|
|
|
|
123 |
except Exception as e:
|
124 |
print(f"Image generation error: {e}")
|
125 |
return None
|
126 |
+
|
127 |
def romanized_to_bengali(text: str) -> str:
|
128 |
"""Convert romanized Bengali text to Bengali script."""
|
129 |
bengali_mappings = {
|
|
|
167 |
return
|
168 |
|
169 |
# Check if this is an image generation request
|
170 |
+
"""Handle user message and respond accordingly."""
|
171 |
+
# Check for image requests first
|
172 |
if is_image_request(message):
|
173 |
try:
|
174 |
image = generate_image(message)
|
175 |
if image:
|
176 |
+
return f"Here's your generated image based on: {message}"
|
|
|
|
|
|
|
177 |
else:
|
178 |
+
return "Sorry, I couldn't generate the image. Please try again."
|
|
|
179 |
except Exception as e:
|
180 |
+
return f"An error occurred while generating the image: {str(e)}"
|
|
|
181 |
|
182 |
# Handle translation with more conservative approach
|
183 |
translated_msg, original_lang, was_transliterated = translate_text(message)
|