Spaces:
Runtime error
Runtime error
File size: 37,133 Bytes
4d1131a |
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 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 |
import os
import logging
import json
import torch
import re
from typing import List, Dict, Any, Optional, Union
from datetime import datetime
from pydantic import BaseModel, Field
import tempfile
# Model imports
from transformers import (
pipeline,
AutoTokenizer,
AutoModelForCausalLM,
BitsAndBytesConfig
)
from peft import PeftModel, PeftConfig
from sentence_transformers import SentenceTransformer
# LangChain imports
# Core LangChain components for building conversational AI
from langchain.llms import HuggingFacePipeline # Wrapper for HuggingFace models
from langchain.chains import LLMChain # Chain for LLM interactions
from langchain.memory import ConversationBufferMemory # Memory for conversation history
from langchain.prompts import PromptTemplate # Template for structured prompts
from langchain.embeddings import HuggingFaceEmbeddings # Text embeddings for similarity search
from langchain.text_splitter import RecursiveCharacterTextSplitter # Document chunking
from langchain.document_loaders import TextLoader # Load text documents
from langchain.vectorstores import FAISS # Vector database for similarity search
# Import FlowManager
from conversation_flow import FlowManager
# Configure logging
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
handlers=[logging.StreamHandler()]
)
logger = logging.getLogger(__name__)
# Suppress warnings
import warnings
warnings.filterwarnings('ignore', category=UserWarning)
# Set up cache directories
def setup_cache_dirs():
# Check if running in Hugging Face Spaces
is_spaces = os.environ.get('SPACE_ID') is not None
if is_spaces:
# Use /tmp for Hugging Face Spaces with proper permissions
cache_dir = '/tmp/huggingface'
os.environ.update({
'TRANSFORMERS_CACHE': cache_dir,
'HF_HOME': cache_dir,
'TOKENIZERS_PARALLELISM': 'false',
'TRANSFORMERS_VERBOSITY': 'error',
'BITSANDBYTES_NOWELCOME': '1',
'HF_DATASETS_CACHE': cache_dir,
'HF_METRICS_CACHE': cache_dir,
'HF_MODULES_CACHE': cache_dir,
'HUGGING_FACE_HUB_TOKEN': os.environ.get('HF_TOKEN', ''),
'HF_TOKEN': os.environ.get('HF_TOKEN', '')
})
else:
# Use default cache for local development
cache_dir = os.path.expanduser('~/.cache/huggingface')
os.environ.update({
'TOKENIZERS_PARALLELISM': 'false',
'TRANSFORMERS_VERBOSITY': 'error',
'BITSANDBYTES_NOWELCOME': '1'
})
# Create cache directory if it doesn't exist
os.makedirs(cache_dir, exist_ok=True)
return cache_dir
# Set up cache directories
CACHE_DIR = setup_cache_dirs()
# Define base directory and paths
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
MODELS_DIR = os.path.join(BASE_DIR, "models")
VECTOR_DB_PATH = os.path.join(BASE_DIR, "vector_db")
SESSION_DATA_PATH = os.path.join(BASE_DIR, "session_data")
SUMMARIES_DIR = os.path.join(BASE_DIR, "session_summaries")
# Create necessary directories
for directory in [MODELS_DIR, VECTOR_DB_PATH, SESSION_DATA_PATH, SUMMARIES_DIR]:
os.makedirs(directory, exist_ok=True)
# Pydantic models
class Message(BaseModel):
text: str = Field(..., description="The content of the message")
timestamp: str = Field(None, description="ISO format timestamp of the message")
role: str = Field("user", description="The role of the message sender (user or assistant)")
class SessionSummary(BaseModel):
session_id: str = Field(
...,
description="Unique identifier for the session",
examples=["user_789_session_20240314"]
)
user_id: str = Field(
...,
description="Identifier of the user",
examples=["user_123"])
start_time: str = Field(..., description="ISO format start time of the session"
)
end_time: str = Field(
...,
description="ISO format end time of the session"
)
message_count: int = Field(
...,
description="Total number of messages in the session"
)
duration_minutes: float = Field(
...,
description="Duration of the session in minutes"
)
primary_emotions: List[str] = Field(
...,
min_items=1,
description="List of primary emotions detected",
examples=[
["anxiety", "stress"],
["joy", "excitement"],
["sadness", "loneliness"]
]
)
emotion_progression: List[Dict[str, float]] = Field(
...,
description="Progression of emotions throughout the session",
examples=[
[
{"anxiety": 0.8, "stress": 0.6},
{"calm": 0.7, "anxiety": 0.3},
{"joy": 0.9, "calm": 0.8}
]
]
)
summary_text: str = Field(
...,
description="Text summary of the session",
examples=[
"The session focused on managing work-related stress and developing coping strategies. The client showed improvement in recognizing stress triggers and implementing relaxation techniques.",
"Discussion centered around relationship challenges and self-esteem issues. The client expressed willingness to try new communication strategies."
]
)
recommendations: Optional[List[str]] = Field(
None,
description="Optional recommendations based on the session"
)
class Conversation(BaseModel):
user_id: str = Field(
...,
description="Identifier of the user",
examples=["user_123"]
)
session_id: str = Field(
"",
description="Identifier of the current session"
)
start_time: str = Field(
"",
description="ISO format start time of the conversation"
)
messages: List[Message] = Field(
[],
description="List of messages in the conversation",
examples=[
[
Message(text="I'm feeling anxious", role="user"),
Message(text="I understand you're feeling anxious. Can you tell me more about what's causing this?", role="assistant")
]
]
)
emotion_history: List[Dict[str, float]] = Field(
[],
description="History of emotions detected",
examples=[
[
{"anxiety": 0.8, "stress": 0.6},
{"calm": 0.7, "anxiety": 0.3}
]
]
)
context: Dict[str, Any] = Field(
{},
description="Additional context for the conversation",
examples=[
{
"last_emotion": "anxiety",
"conversation_topic": "work stress",
"previous_sessions": 3
}
]
)
is_active: bool = Field(
True,
description="Whether the conversation is currently active",
examples=[True, False]
)
class MentalHealthChatbot:
def __init__(
self,
model_name: str = "meta-llama/Llama-3.2-3B-Instruct",
peft_model_path: str = "nada013/mental-health-chatbot",
therapy_guidelines_path: str = None,
use_4bit: bool = True,
device: str = None
):
# Set device (cuda if available, otherwise cpu)
if device is None:
self.device = "cuda" if torch.cuda.is_available() else "cpu"
else:
self.device = device
# Set memory optimization for T4
if self.device == "cuda":
torch.cuda.empty_cache() # Clear GPU cache
# Set smaller batch size for T4
self.batch_size = 4
# Enable memory efficient attention
os.environ["PYTORCH_CUDA_ALLOC_CONF"] = "max_split_size_mb:128"
else:
self.batch_size = 8
logger.info(f"Using device: {self.device}")
# Initialize models
self.peft_model_path = peft_model_path
# Initialize emotion detection model
logger.info("Loading emotion detection model")
self.emotion_classifier = self._load_emotion_model()
# Initialize LLAMA model
logger.info(f"Loading LLAMA model: {model_name}")
self.llama_model, self.llama_tokenizer, self.llm = self._initialize_llm(model_name, use_4bit)
# Initialize summary model
logger.info("Loading summary model")
self.summary_model = pipeline(
"summarization",
model="philschmid/bart-large-cnn-samsum",
device=0 if self.device == "cuda" else -1,
model_kwargs={
"cache_dir": CACHE_DIR,
"torch_dtype": torch.float16,
"max_memory": {0: "2GB"} if self.device == "cuda" else None
}
)
logger.info("Summary model loaded successfully")
# Initialize FlowManager
logger.info("Initializing FlowManager")
self.flow_manager = FlowManager(self.llm)
# Setup conversation memory with LangChain
# ConversationBufferMemory stores the conversation history in a buffer
# This allows the chatbot to maintain context across multiple interactions
# - return_messages=True: Returns messages as a list of message objects
# - input_key="input": Specifies which key to use for the input in the memory
self.memory = ConversationBufferMemory(
return_messages=True,
input_key="input"
)
# Create conversation prompt template
# PromptTemplate defines the structure for generating responses
# It includes placeholders for dynamic content that gets filled during generation
# Input variables:
# - history: Previous conversation context from memory
# - input: Current user message
# - past_context: Relevant past conversations from vector search
# - emotion_context: Detected emotions and their context
# - guidelines: Relevant therapeutic guidelines from vector search
self.prompt_template = PromptTemplate(
input_variables=["history", "input", "past_context", "emotion_context", "guidelines"],
template="""You are a supportive and empathetic mental health conversational AI. Your role is to provide therapeutic support while maintaining professional boundaries.
Previous conversation:
{history}
EMOTIONAL CONTEXT:
{emotion_context}
Past context: {past_context}
Relevant therapeutic guidelines:
{guidelines}
Current message: {input}
Provide a supportive response that:
1. Validates the user's feelings without using casual greetings
2. Asks relevant follow-up questions
3. Maintains a conversational tone , professional and empathetic tone
4. Focuses on understanding and support
5. Avoids repeating previous responses
Response:"""
)
# Create the conversation chain
self.conversation = LLMChain(
llm=self.llm,
prompt=self.prompt_template,
memory=self.memory,
verbose=False
)
# Setup embeddings for vector search
self.embeddings = HuggingFaceEmbeddings(
model_name="sentence-transformers/all-MiniLM-L6-v2"
)
# Setup vector database for retrieving relevant past conversations
if therapy_guidelines_path and os.path.exists(therapy_guidelines_path):
self.setup_vector_db(therapy_guidelines_path)
else:
self.setup_vector_db(None)
# Initialize conversation storage
self.conversations = {}
# Load existing session summaries
self.session_summaries = {}
self._load_existing_summaries()
logger.info("All models and components initialized successfully")
def _load_emotion_model(self):
try:
# Load emotion model directly from Hugging Face
return pipeline(
"text-classification",
model="SamLowe/roberta-base-go_emotions",
top_k=None,
device_map="auto" if torch.cuda.is_available() else None,
model_kwargs={
"cache_dir": CACHE_DIR,
"torch_dtype": torch.float16, # Use float16
"max_memory": {0: "2GB"} if torch.cuda.is_available() else None # Limit memory usage
},
)
except Exception as e:
logger.error(f"Error loading emotion model: {e}")
# Fallback to a simpler model
try:
return pipeline(
"text-classification",
model="j-hartmann/emotion-english-distilroberta-base",
return_all_scores=True,
device_map="auto" if torch.cuda.is_available() else None,
model_kwargs={
"cache_dir": CACHE_DIR,
"torch_dtype": torch.float16,
"max_memory": {0: "2GB"} if torch.cuda.is_available() else None
},
)
except Exception as e:
logger.error(f"Error loading fallback emotion model: {e}")
# Return a simple pipeline that always returns neutral
return lambda text: [{"label": "neutral", "score": 1.0}]
def _initialize_llm(self, model_name: str, use_4bit: bool):
try:
# Configure quantization only if CUDA is available
if use_4bit and torch.cuda.is_available():
quantization_config = BitsAndBytesConfig(
load_in_4bit=True,
bnb_4bit_compute_dtype=torch.float16,
bnb_4bit_quant_type="nf4",
bnb_4bit_use_double_quant=True,
)
# Set max memory for T4 GPU
max_memory = {0: "14GB"} # Leave 2GB buffer for other operations
else:
quantization_config = None
max_memory = None
logger.info("CUDA not available, running without quantization")
# Load base model
logger.info(f"Loading base model: {model_name}")
base_model = AutoModelForCausalLM.from_pretrained(
model_name,
quantization_config=quantization_config,
device_map="auto",
max_memory=max_memory,
trust_remote_code=True,
cache_dir=CACHE_DIR,
use_auth_token=os.environ.get('HF_TOKEN'),
torch_dtype=torch.float16 # Use float16 for better memory efficiency
)
# Load tokenizer
logger.info("Loading tokenizer")
tokenizer = AutoTokenizer.from_pretrained(
model_name,
cache_dir=CACHE_DIR,
use_auth_token=os.environ.get('HF_TOKEN') # Add auth token for gated models
)
tokenizer.pad_token = tokenizer.eos_token
# Load PEFT model
logger.info(f"Loading PEFT model from {self.peft_model_path}")
model = PeftModel.from_pretrained(
base_model,
self.peft_model_path,
cache_dir=CACHE_DIR,
use_auth_token=os.environ.get('HF_TOKEN') # Add auth token for gated models
)
logger.info("Successfully loaded PEFT model")
# Create text generation pipeline
text_generator = pipeline(
"text-generation",
model=model,
tokenizer=tokenizer,
max_new_tokens=512,
temperature=0.7,
top_p=0.95,
repetition_penalty=1.1,
do_sample=True,
device_map="auto" if torch.cuda.is_available() else None
)
# Create LangChain wrapper
llm = HuggingFacePipeline(pipeline=text_generator)
return model, tokenizer, llm
except Exception as e:
logger.error(f"Error initializing LLM: {str(e)}")
raise
def setup_vector_db(self, guidelines_path: str = None):
logger.info("Setting up FAISS vector database")
# Check if vector DB exists
vector_db_exists = os.path.exists(os.path.join(VECTOR_DB_PATH, "index.faiss"))
if not vector_db_exists:
# Load therapy guidelines
if guidelines_path and os.path.exists(guidelines_path):
loader = TextLoader(guidelines_path)
documents = loader.load()
# Split documents into chunks with better overlap for context
text_splitter = RecursiveCharacterTextSplitter(
chunk_size=500, # Smaller chunks for more precise retrieval
chunk_overlap=100,
separators=["\n\n", "\n", " ", ""]
)
chunks = text_splitter.split_documents(documents)
# Create and save the vector store
self.vector_db = FAISS.from_documents(chunks, self.embeddings)
self.vector_db.save_local(VECTOR_DB_PATH)
logger.info("Successfully loaded and indexed therapy guidelines")
else:
# Initialize with empty vector DB
self.vector_db = FAISS.from_texts(["Initial empty vector store"], self.embeddings)
self.vector_db.save_local(VECTOR_DB_PATH)
logger.warning("No guidelines file provided, using empty vector store")
else:
# Load existing vector DB
self.vector_db = FAISS.load_local(VECTOR_DB_PATH, self.embeddings, allow_dangerous_deserialization=True)
logger.info("Loaded existing vector database")
def _load_existing_summaries(self):
if not os.path.exists(SUMMARIES_DIR):
return
for filename in os.listdir(SUMMARIES_DIR):
if filename.endswith('.json'):
try:
with open(os.path.join(SUMMARIES_DIR, filename), 'r') as f:
summary_data = json.load(f)
session_id = summary_data.get('session_id')
if session_id:
self.session_summaries[session_id] = summary_data
except Exception as e:
logger.warning(f"Failed to load summary from {filename}: {e}")
def detect_emotion(self, text: str) -> Dict[str, float]:
try:
results = self.emotion_classifier(text)[0]
return {result['label']: result['score'] for result in results}
except Exception as e:
logger.error(f"Error detecting emotions: {e}")
return {"neutral": 1.0}
def retrieve_relevant_context(self, query: str, k: int = 3) -> str:
# Retrieve relevant past conversations using vector similarity
if not hasattr(self, 'vector_db'):
return ""
try:
# Retrieve similar documents from vector DB
docs = self.vector_db.similarity_search(query, k=k)
# Combine the content of retrieved documents
relevant_context = "\n".join([doc.page_content for doc in docs])
return relevant_context
except Exception as e:
logger.error(f"Error retrieving context: {e}")
return ""
def retrieve_relevant_guidelines(self, query: str, emotion_context: str) -> str:
if not hasattr(self, 'vector_db'):
return ""
try:
# Combine query and emotion context for better relevance
search_query = f"{query} {emotion_context}"
# Retrieve similar documents from vector DB
docs = self.vector_db.similarity_search(search_query, k=2)
# Combine the content of retrieved documents
relevant_guidelines = "\n".join([doc.page_content for doc in docs])
return relevant_guidelines
except Exception as e:
logger.error(f"Error retrieving guidelines: {e}")
return ""
def generate_response(self, prompt: str, emotion_data: Dict[str, float], conversation_history: List[Dict]) -> str:
# Get primary and secondary emotions
sorted_emotions = sorted(emotion_data.items(), key=lambda x: x[1], reverse=True)
primary_emotion = sorted_emotions[0][0] if sorted_emotions else "neutral"
# Get secondary emotions (if any)
secondary_emotions = []
for emotion, score in sorted_emotions[1:3]: # Get 2nd and 3rd strongest emotions
if score > 0.2: # Only include if reasonably strong
secondary_emotions.append(emotion)
# Create emotion context string
emotion_context = f"User is primarily feeling {primary_emotion}"
if secondary_emotions:
emotion_context += f" with elements of {' and '.join(secondary_emotions)}"
emotion_context += "."
# Retrieve relevant guidelines
guidelines = self.retrieve_relevant_guidelines(prompt, emotion_context)
# Retrieve past context
past_context = self.retrieve_relevant_context(prompt)
# Generate response using the conversation chain
response = self.conversation.predict(
input=prompt,
past_context=past_context,
emotion_context=emotion_context,
guidelines=guidelines
)
# Clean up the response to only include the actual message
response = response.split("Response:")[-1].strip()
response = response.split("---")[0].strip()
response = response.split("Note:")[0].strip()
# Remove any casual greetings like "Hey" or "Hi"
response = re.sub(r'^(Hey|Hi|Hello|Hi there|Hey there),\s*', '', response)
# Ensure the response is unique and not repeating previous messages
if len(conversation_history) > 0:
last_responses = [msg["text"] for msg in conversation_history[-4:] if msg["role"] == "assistant"]
if response in last_responses:
# Generate a new response with a different angle
response = self.conversation.predict(
input=f"{prompt} (Please provide a different perspective)",
past_context=past_context,
emotion_context=emotion_context,
guidelines=guidelines
)
response = response.split("Response:")[-1].strip()
response = re.sub(r'^(Hey|Hi|Hello|Hi there|Hey there),\s*', '', response)
return response.strip()
def generate_session_summary(
self,
flow_manager_session: Dict = None
) -> Dict:
if not flow_manager_session:
return {
"session_id": "",
"user_id": "",
"start_time": "",
"end_time": datetime.now().isoformat(),
"duration_minutes": 0,
"current_phase": "unknown",
"primary_emotions": [],
"emotion_progression": [],
"summary": "Error: No session data provided",
"recommendations": ["Unable to generate recommendations"],
"session_characteristics": {}
}
# Get session data from FlowManager
session_id = flow_manager_session.get('session_id', '')
user_id = flow_manager_session.get('user_id', '')
current_phase = flow_manager_session.get('current_phase')
if current_phase:
# Convert ConversationPhase to dict
current_phase = {
'name': current_phase.name,
'description': current_phase.description,
'goals': current_phase.goals,
'started_at': current_phase.started_at,
'ended_at': current_phase.ended_at,
'completion_metrics': current_phase.completion_metrics
}
session_start = flow_manager_session.get('started_at')
if isinstance(session_start, str):
session_start = datetime.fromisoformat(session_start)
session_duration = (datetime.now() - session_start).total_seconds() / 60 if session_start else 0
# Get emotion progression and primary emotions
emotion_progression = flow_manager_session.get('emotion_progression', [])
emotion_history = flow_manager_session.get('emotion_history', [])
# Extract primary emotions from emotion history
primary_emotions = []
if emotion_history:
# Get the most frequent emotions
emotion_counts = {}
for entry in emotion_history:
emotions = entry.get('emotions', {})
if isinstance(emotions, dict):
primary = max(emotions.items(), key=lambda x: x[1])[0]
emotion_counts[primary] = emotion_counts.get(primary, 0) + 1
# sort by frequency and get top 3
primary_emotions = sorted(emotion_counts.items(), key=lambda x: x[1], reverse=True)[:3]
primary_emotions = [emotion for emotion, _ in primary_emotions]
# get session
session_characteristics = flow_manager_session.get('llm_context', {}).get('session_characteristics', {})
# prepare the text for summarization
summary_text = f"""
Session Overview:
- Session ID: {session_id}
- User ID: {user_id}
- Phase: {current_phase.get('name', 'unknown') if current_phase else 'unknown'}
- Duration: {session_duration:.1f} minutes
Emotional Analysis:
- Primary Emotions: {', '.join(primary_emotions) if primary_emotions else 'No primary emotions detected'}
- Emotion Progression: {', '.join(emotion_progression) if emotion_progression else 'No significant emotion changes noted'}
Session Characteristics:
- Therapeutic Alliance: {session_characteristics.get('alliance_strength', 'N/A')}
- Engagement Level: {session_characteristics.get('engagement_level', 'N/A')}
- Emotional Pattern: {session_characteristics.get('emotional_pattern', 'N/A')}
- Cognitive Pattern: {session_characteristics.get('cognitive_pattern', 'N/A')}
Key Observations:
- The session focused on {current_phase.get('description', 'general discussion') if current_phase else 'general discussion'}
- Main emotional themes: {', '.join(primary_emotions) if primary_emotions else 'not identified'}
- Session progress: {session_characteristics.get('progress_quality', 'N/A')}
"""
# Generate summary using BART
summary = self.summary_model(
summary_text,
max_length=150,
min_length=50,
do_sample=False
)[0]['summary_text']
# Generate recommendations using Llama
recommendations_prompt = f"""
Based on the following session summary, provide 2-3 specific recommendations for follow-up:
{summary}
Session Characteristics:
- Therapeutic Alliance: {session_characteristics.get('alliance_strength', 'N/A')}
- Engagement Level: {session_characteristics.get('engagement_level', 'N/A')}
- Emotional Pattern: {session_characteristics.get('emotional_pattern', 'N/A')}
- Cognitive Pattern: {session_characteristics.get('cognitive_pattern', 'N/A')}
Recommendations should be:
1. Actionable and specific
2. Based on the session content
3. Focused on next steps
"""
recommendations = self.llm.invoke(recommendations_prompt)
recommendations = recommendations.split('\n')
recommendations = [r.strip() for r in recommendations if r.strip()]
recommendations = [r for r in recommendations if not r.startswith(('Based on', 'Session', 'Recommendations'))]
return {
"session_id": session_id,
"user_id": user_id,
"start_time": session_start.isoformat() if isinstance(session_start, datetime) else str(session_start),
"end_time": datetime.now().isoformat(),
"duration_minutes": session_duration,
"current_phase": current_phase.get('name', 'unknown') if current_phase else 'unknown',
"primary_emotions": primary_emotions,
"emotion_progression": emotion_progression,
"summary": summary,
"recommendations": recommendations,
"session_characteristics": session_characteristics
}
def start_session(self, user_id: str) -> tuple[str, str]:
# Generate session id
session_id = f"{user_id}_{datetime.now().strftime('%Y%m%d%H%M%S')}"
# Initialize FlowManager session
self.flow_manager.initialize_session(user_id)
# Create a new conversation
self.conversations[user_id] = Conversation(
user_id=user_id,
session_id=session_id,
start_time=datetime.now().isoformat(),
is_active=True
)
# Clear conversation memory
self.memory.clear()
# Generate initial greeting and question
initial_message = """Hello! I'm here to support you today. How have you been feeling lately?"""
# Add the initial message to conversation history
assistant_message = Message(
text=initial_message,
timestamp=datetime.now().isoformat(),
role="assistant"
)
self.conversations[user_id].messages.append(assistant_message)
logger.info(f"Session started for user {user_id}")
return session_id, initial_message
def end_session(
self,
user_id: str,
flow_manager: Optional[Any] = None
) -> Optional[Dict]:
if user_id not in self.conversations or not self.conversations[user_id].is_active:
return None
conversation = self.conversations[user_id]
conversation.is_active = False
# Get FlowManager session data
flow_manager_session = self.flow_manager.user_sessions.get(user_id)
# Generate session summary
try:
session_summary = self.generate_session_summary(flow_manager_session)
# Save summary to disk
summary_path = os.path.join(SUMMARIES_DIR, f"{session_summary['session_id']}.json")
with open(summary_path, 'w') as f:
json.dump(session_summary, f, indent=2)
# Store in memory
self.session_summaries[session_summary['session_id']] = session_summary
# Clear conversation memory
self.memory.clear()
return session_summary
except Exception as e:
logger.error(f"Failed to generate session summary: {e}")
return None
def process_message(self, user_id: str, message: str) -> str:
# Check for risk flags
risk_keywords = ["suicide", "kill myself", "end my life", "self-harm", "hurt myself"]
risk_detected = any(keyword in message.lower() for keyword in risk_keywords)
# Create or get conversation
if user_id not in self.conversations or not self.conversations[user_id].is_active:
self.start_session(user_id)
conversation = self.conversations[user_id]
# user message -> conversation history
new_message = Message(
text=message,
timestamp=datetime.now().isoformat(),
role="user"
)
conversation.messages.append(new_message)
# For crisis
if risk_detected:
logger.warning(f"Risk flag detected in session {user_id}")
crisis_response = """ I'm really sorry you're feeling this way — it sounds incredibly heavy, and I want you to know that you're not alone.
You don't have to face this by yourself. Our app has licensed mental health professionals who are ready to support you. I can connect you right now if you'd like.
In the meantime, I'm here to listen and talk with you. You can also do grounding exercises or calming techniques with me if you prefer. Just say "help me calm down" or "I need a break."
Would you like to connect with a professional now, or would you prefer to keep talking with me for a bit? Either way, I'm here for you."""
# assistant response -> conversation history
assistant_message = Message(
text=crisis_response,
timestamp=datetime.now().isoformat(),
role="assistant"
)
conversation.messages.append(assistant_message)
return crisis_response
# Detect emotions
emotions = self.detect_emotion(message)
conversation.emotion_history.append(emotions)
# Process message with FlowManager
flow_context = self.flow_manager.process_message(user_id, message, emotions)
# Format conversation history
conversation_history = []
for msg in conversation.messages:
conversation_history.append({
"text": msg.text,
"timestamp": msg.timestamp,
"role": msg.role
})
# Generate response
response_text = self.generate_response(message, emotions, conversation_history)
# Generate a follow-up question if the response is too short
if len(response_text.split()) < 20 and not response_text.endswith('?'):
follow_up_prompt = f"""
Recent conversation:
{chr(10).join([f"{msg['role']}: {msg['text']}" for msg in conversation_history[-3:]])}
Now, write a single empathetic and open-ended question to encourage the user to share more.
Respond with just the question, no explanation.
"""
follow_up = self.llm.invoke(follow_up_prompt).strip()
# Clean and extract only the actual question (first sentence ending with '?')
matches = re.findall(r'([^\n.?!]*\?)', follow_up)
if matches:
question = matches[0].strip()
else:
question = follow_up.strip().split('\n')[0]
# If the main response is very short, return just the question
if len(response_text.split()) < 5:
response_text = question
else:
response_text = f"{response_text}\n\n{question}"
# Final post-processing: remove any LLM commentary that may have leaked in
response_text = response_text.strip()
response_text = re.sub(r"(Your response|This response).*", "", response_text, flags=re.IGNORECASE).strip()
# assistant response -> conversation history
assistant_message = Message(
text=response_text,
timestamp=datetime.now().isoformat(),
role="assistant"
)
conversation.messages.append(assistant_message)
# Update context
conversation.context.update({
"last_emotion": emotions,
"last_interaction": datetime.now().isoformat(),
"flow_context": flow_context
})
# Store this interaction in vector database
current_interaction = f"User: {message}\nChatbot: {response_text}"
self.vector_db.add_texts([current_interaction])
self.vector_db.save_local(VECTOR_DB_PATH)
return response_text
def get_session_summary(self, session_id: str) -> Optional[Dict[str, Any]]:
return self.session_summaries.get(session_id)
def get_user_replies(self, user_id: str) -> List[Dict[str, Any]]:
if user_id not in self.conversations:
return []
conversation = self.conversations[user_id]
user_replies = []
for message in conversation.messages:
if message.role == "user":
user_replies.append({
"text": message.text,
"timestamp": message.timestamp,
"session_id": conversation.session_id
})
return user_replies
if __name__ == "__main__":
pass |