Spaces:
No application file
No application file
File size: 14,347 Bytes
b325aad |
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 |
from openai import OpenAI
import json
import re
from typing import Dict, List, Optional, Tuple
from datetime import datetime
import os
from enum import Enum
from loguru import logger
from dotenv import load_dotenv
load_dotenv()
class EmotionalState(Enum):
CALM = "calm"
ANXIOUS = "anxious"
DEPRESSED = "depressed"
ANGRY = "angry"
DISTRESSED = "distressed"
class OmaniTherapistAI:
def __init__(self, api_key: str = None):
"""
Initialize the OMANI Therapist AI system
Args:
api_key: OpenAI API key (if not provided, will use environment variable)
"""
self.api_key = api_key or os.getenv('OPENAI_API_KEY')
if not self.api_key:
raise ValueError("OpenAI API key is required")
self.client = OpenAI(api_key=self.api_key)
# Session management
self.conversation_history = []
self.user_profile = {}
self.emotional_state = EmotionalState.CALM
# System prompt for therapeutic conversations
self.system_prompt = self._create_system_prompt()
def _create_system_prompt(self) -> str:
"""Create comprehensive system prompt for bilingual therapeutic conversations"""
return """You are a specialized mental health counselor for the Omani community. You are fluent in both Arabic (Omani dialect) and English, and you understand Gulf culture and Islamic values deeply.
## Your Identity & Characteristics:
- Omani Mental Health Counselor
- Bilingual: Fluent in Omani Arabic and English
- Culturally competent in Gulf and Islamic traditions
- Understand family dynamics and Gulf society
- Integrate Islamic concepts in therapy when appropriate
- Handle code-switching naturally between Arabic and English
## Your Therapeutic Skills:
- Cognitive Behavioral Therapy (CBT) adapted for Omani culture
- Active listening and empathy
- Anxiety and stress management techniques
- Family and relationship therapy
- Trauma-informed approaches
- Spiritual therapy compatible with Islam
## Language Guidelines:
**CRITICAL: Always respond in the SAME language the user uses:**
- If user writes in Arabic → respond in Omani Arabic
- If user writes in English → respond in English
- If user mixes languages → mirror their code-switching pattern
- Maintain cultural sensitivity in both languages
## Response Instructions:
- Start with warm greeting and check emotional state
- Ask open-ended questions to understand situation
- Use reframing and summarization techniques
- Offer practical coping strategies
- End with summary and follow-up suggestions
- Keep responses 100-200 words
- Show empathy and understanding
## Cultural Sensitivity:
- Respect Islamic values and Omani traditions
- Avoid taboo or controversial topics
- Consider family/community role in mental health
- Use religious references wisely when appropriate
- Address mental health stigma sensitively
Remember: You are a supportive assistant, not a replacement for professional specialized therapy.
"""
def detect_language(self, text: str) -> str:
"""
Detect if text is primarily Arabic or English
Args:
text: Input text to analyze
Returns:
'arabic', 'english', or 'mixed'
"""
# Count Arabic vs English characters
arabic_chars = sum(1 for char in text if '\u0600' <= char <= '\u06FF')
english_chars = sum(1 for char in text if char.isalpha() and char.isascii())
if arabic_chars > english_chars:
return 'arabic'
elif english_chars > arabic_chars:
return 'english'
else:
return 'mixed'
def analyze_emotional_state(self, user_input: str) -> Tuple[EmotionalState, str]:
"""
Analyze user's emotional state from input
Args:
user_input: User's message in Arabic or English
Returns:
Tuple of (emotional_state, detected_language)
"""
user_input_lower = user_input.lower()
detected_language = self.detect_language(user_input)
# Emotional state analysis using keywords (expanded for both languages)
anxiety_keywords = [
# Arabic
'قلق', 'خوف', 'توتر', 'قلقان', 'مضطرب', 'خايف', 'متوتر', 'مهموم',
'أشعر بالقلق', 'أخاف', 'عندي قلق', 'مش مرتاح', 'مو مرتاح',
# English
'anxiety', 'worried', 'nervous', 'anxious', 'panic', 'scared', 'fearful',
'feel anxious', 'feeling worried', 'i\'m scared', 'i\'m nervous'
]
depression_keywords = [
# Arabic
'حزن', 'اكتئاب', 'مكتئب', 'حزين', 'يائس', 'زعلان', 'مش راضي',
'أشعر بالحزن', 'مو مبسوط', 'تعبان نفسياً', 'مش عارف شنو أسوي',
# English
'depressed', 'sad', 'hopeless', 'down', 'blue', 'miserable', 'unhappy',
'feeling down', 'feel sad', 'i\'m depressed', 'feeling hopeless'
]
anger_keywords = [
# Arabic
'غضب', 'غاضب', 'زعلان', 'مستاء', 'عصبي', 'متضايق', 'مش راضي',
'أشعر بالغضب', 'مزعوج', 'معصب', 'متنرفز',
# English
'angry', 'mad', 'frustrated', 'irritated', 'annoyed', 'upset', 'furious',
'feel angry', 'i\'m mad', 'feeling frustrated', 'really upset'
]
stress_keywords = [
# Arabic
'ضغط', 'ضغوط', 'تعب', 'مرهق', 'تعبان', 'مش قادر', 'صعب عليّ',
'أشعر بالضغط', 'مرهق نفسياً', 'ما أقدر أكمل',
# English
'stress', 'stressed', 'pressure', 'overwhelmed', 'exhausted', 'burned out',
'feeling stressed', 'under pressure', 'can\'t cope', 'too much pressure'
]
if any(keyword in user_input_lower for keyword in anxiety_keywords):
return EmotionalState.ANXIOUS, detected_language
elif any(keyword in user_input_lower for keyword in depression_keywords):
return EmotionalState.DEPRESSED, detected_language
elif any(keyword in user_input_lower for keyword in anger_keywords):
return EmotionalState.ANGRY, detected_language
elif any(keyword in user_input_lower for keyword in stress_keywords):
return EmotionalState.DISTRESSED, detected_language
return EmotionalState.CALM, detected_language
def generate_therapeutic_response(self, user_input: str, include_history: bool = True) -> Dict:
"""
Generate therapeutic response using OpenAI GPT-4o
Args:
user_input: User's message
include_history: Whether to include conversation history
Returns:
Dictionary containing response and metadata
"""
try:
# Analyze emotional state and detect language
emotional_state, detected_language = self.analyze_emotional_state(user_input)
self.emotional_state = emotional_state
# Prepare messages for API
messages = [{"role": "system", "content": self.system_prompt}]
# Add language context to system prompt
language_instruction = f"\n\nIMPORTANT: The user is communicating in {detected_language}. Please respond in the same language they used."
messages[0]["content"] += language_instruction
# Add conversation history if requested
if include_history and self.conversation_history:
messages.extend(self.conversation_history[-6:]) # Last 6 messages for context
# Add current user message
messages.append({"role": "user", "content": user_input})
# Generate response using OpenAI
response = self.client.responses.create(
model="gpt-4.1-nano-2025-04-14",
input=messages,
temperature=0.7,
)
logger.info(f"Generated response: {response.output_text}")
ai_response = (response.output_text)
# Update conversation history
self.conversation_history.append({"role": "user", "content": user_input})
self.conversation_history.append({"role": "assistant", "content": ai_response})
# Keep only last 10 messages to manage context length
if len(self.conversation_history) > 10:
self.conversation_history = self.conversation_history[-10:]
return {
"response": ai_response,
"emotional_state": emotional_state.value,
"detected_language": detected_language,
"timestamp": datetime.now().isoformat(),
}
except Exception as e:
logger.error(f"Error generating response: {str(e)}")
# Error response in detected language
detected_language = self.detect_language(user_input)
if detected_language == 'english':
error_message = "Sorry, a technical error occurred. Please try again or contact a specialist."
else:
error_message = "آسف، حدث خطأ تقني. يرجى المحاولة مرة أخرى أو التواصل مع المختص."
return {
"response": error_message,
"emotional_state": "unknown",
"detected_language": detected_language,
"timestamp": datetime.now().isoformat(),
"error": str(e)
}
def get_conversation_summary(self) -> Dict:
"""Get summary of current conversation session"""
return {
"total_messages": len(self.conversation_history),
"current_emotional_state": self.emotional_state.value,
"session_start": self.conversation_history[0].get("timestamp") if self.conversation_history else None,
"last_interaction": datetime.now().isoformat()
}
def clear_conversation(self):
"""Clear conversation history and reset state"""
self.conversation_history = []
self.emotional_state = EmotionalState.CALM
logger.info("Conversation cleared")
def export_conversation(self, filename: str = None) -> str:
"""Export conversation to JSON file"""
if not filename:
filename = f"therapy_session_{datetime.now().strftime('%Y%m%d_%H%M%S')}.json"
session_data = {
"session_metadata": self.get_conversation_summary(),
"conversation_history": self.conversation_history,
"export_timestamp": datetime.now().isoformat()
}
with open(filename, 'w', encoding='utf-8') as f:
json.dump(session_data, f, ensure_ascii=False, indent=2)
return filename
# Helper function for easy integration
def get_therapy_response(user_input: str, api_key: str = None) -> Dict:
"""
Simple function to get therapeutic response
Args:
user_input: User's message
api_key: OpenAI API key
Returns:
Dictionary with response and metadata
"""
therapist = OmaniTherapistAI(api_key)
return therapist.generate_therapeutic_response(user_input)
def gpt_response(query):
therapist = OmaniTherapistAI()
response = therapist.generate_therapeutic_response(query)
print(f"AI Response: {response['response']}")
print(f"Emotional State: {response['emotional_state']}")
print(f"Detected Language: {response['detected_language']}")
return response
# Example usage and testing
if __name__ == "__main__":
# Test the system
therapist = OmaniTherapistAI()
# Test scenarios in both languages
test_scenarios = [
# Arabic scenarios
"السلام عليكم، أشعر بالقلق الشديد هذه الأيام",
"أواجه مشاكل في العمل وأشعر بالضغط",
"لا أستطيع النوم جيداً ومزاجي متقلب",
"أريد أن أتحدث عن مشاكلي مع زوجتي",
"أشعر بالاكتئاب ولا أعرف ماذا أفعل",
# English scenarios
"Hello, I'm feeling very anxious these days",
"I'm having problems at work and feeling stressed",
"I can't sleep well and my mood is unstable",
"I want to talk about my problems with my wife",
"I feel depressed and don't know what to do",
# Code-switching scenarios
"السلام عليكم، I'm feeling very stressed lately",
"Hello, أشعر بالقلق and I don't know what to do",
"My work is مرهق جداً and I can't cope"
]
print("=== OMANI Therapist AI Test ===")
for i, scenario in enumerate(test_scenarios, 1):
print(f"\n--- Test Scenario {i} ---")
print(f"User: {scenario}")
response = therapist.generate_therapeutic_response(scenario)
print(f"AI Response: {response['response']}")
print(f"Emotional State: {response['emotional_state']}")
print(f"Detected Language: {response['detected_language']}")
print("-" * 50)
# Print conversation summary
print("\n=== Session Summary ===")
summary = therapist.get_conversation_summary()
print(json.dumps(summary, indent=2, ensure_ascii=False)) |