Spaces:
Sleeping
Sleeping
File size: 34,005 Bytes
4b28fb0 | 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 | """
Search Optimization Module for Atlas Intelligent Search Management
This module contains all search decision logic and optimization algorithms to reduce
unnecessary web searches by analyzing conversation context and user intent patterns.
Key Features:
- Rule-based search decision patterns
- AI-powered search necessity analysis
- Conversation history context analysis
- Hybrid decision engine combining rules and AI
- Search term extraction and processing utilities
Authors: Atlas Development Team
Version: 1.0.0
"""
try:
import google.generativeai as genai
except ImportError:
genai = None
try:
import spacy
except ImportError:
spacy = None
try:
from rake_nltk import Rake
except ImportError:
Rake = None
import asyncio
import logging
import time
import json
import re
from typing import Optional, List, Dict, Any, Tuple
from functools import wraps
# Configure logging
logger = logging.getLogger(__name__)
# AI Decision Cache for performance optimization
ai_decision_cache: Dict[str, Tuple[Dict[str, Any], float]] = {}
class SearchOptimizer:
"""
Main search optimization class that encapsulates all search decision logic.
This class provides a clean interface for search optimization functionality
while maintaining state for NLP models and caching.
"""
def __init__(self, nlp_model, rake_instance, gemini_model):
"""
Initialize the SearchOptimizer with required dependencies.
Args:
nlp_model: spaCy language model instance
rake_instance: RAKE keyword extraction instance
gemini_model: Google Generative AI model instance
"""
self.nlp = nlp_model
self.rake = rake_instance
self.model = gemini_model
logger.info("SearchOptimizer initialized successfully")
def extract_search_terms(text: str, nlp_model, rake_instance) -> List[str]:
"""
Extract enhanced search terms using combined NER, syntax, and keywords.
This function uses multiple NLP techniques to identify the most relevant
search terms from user input:
1. Named Entity Recognition (NER) for proper nouns
2. Noun phrase extraction via syntactic analysis
3. Keyword extraction using RAKE algorithm
4. Question focus detection through dependency parsing
Args:
text (str): Input text to extract search terms from
nlp_model: spaCy language model instance
rake_instance: RAKE keyword extraction instance
Returns:
List[str]: Cleaned and deduplicated list of search terms
Example:
>>> extract_search_terms("What is machine learning?", nlp, rake)
['machine learning', 'machine', 'learning']
"""
try:
doc = nlp_model(text)
# 1. Extract named entities
entities = [ent.text for ent in doc.ents]
# 2. Extract noun phrases through syntactic analysis
noun_phrases = list(doc.noun_chunks)
# 3. Extract question focus using dependency parsing
focus_phrase = extract_focus_phrase(doc)
# 4. Get keywords using RAKE
rake_instance.extract_keywords_from_text(text)
keywords = rake_instance.get_ranked_phrases()[:3] # Top 3 keywords
# Combine and filter terms
terms = entities + [np.text for np in noun_phrases] + keywords
if focus_phrase:
terms.append(focus_phrase)
# Clean and deduplicate
return clean_terms(terms, nlp_model)
except Exception as e:
logger.error(f"Error extracting search terms: {e}")
# Fallback to simple word extraction
words = text.lower().split()
return [word for word in words if len(word) > 2][:5]
def extract_focus_phrase(doc) -> str:
"""
Extract main question focus using dependency parse tree analysis.
This function identifies the primary focus of a question by analyzing
the dependency relationships in the parse tree, looking for attributes,
subjects, and objects related to the root verb.
Args:
doc: spaCy Doc object with parsed dependencies
Returns:
str: The focused phrase or empty string if none found
Example:
For "What is machine learning?", this might return "machine learning"
"""
try:
for token in doc:
if token.dep_ == "ROOT":
for child in token.children:
if child.dep_ in ("attr", "nsubj", "dobj"):
return " ".join([t.text for t in child.subtree])
return ""
except Exception as e:
logger.warning(f"Error extracting focus phrase: {e}")
return ""
def clean_terms(terms: List[str], nlp_model) -> List[str]:
"""
Remove duplicates and irrelevant terms from extracted search terms.
This function performs several cleaning operations:
1. Removes stopwords and single characters
2. Filters out punctuation-only terms
3. Removes redundant subphrases
4. Deduplicates the final list
Args:
terms (List[str]): Raw list of extracted terms
nlp_model: spaCy language model for stopword detection
Returns:
List[str]: Cleaned and deduplicated list of search terms
"""
try:
# Remove stopwords and single characters
cleaned = [
t for t in terms
if len(t) > 1 and not all(token.is_stop for token in nlp_model(t))
]
# Remove redundant subphrases
final_terms = []
for term in sorted(cleaned, key=len, reverse=True):
if not any(term in other for other in final_terms):
final_terms.append(term)
return final_terms[:10] # Limit to top 10 terms
except Exception as e:
logger.error(f"Error cleaning terms: {e}")
return terms[:5] # Fallback to first 5 terms
def format_search_context(results: List[Dict[str, Any]]) -> str:
"""
Create expanded context from combined search results with richer information.
This function formats search results into a readable context string
that can be used by the AI model for generating responses.
Args:
results (List[Dict[str, Any]]): List of search result dictionaries
Each result should have 'source', 'title', and 'body' keys
Returns:
str: Formatted context string with source attribution
Example:
>>> results = [{"source": "Brave", "title": "AI Guide", "body": "AI is..."}]
>>> format_search_context(results)
'[Brave] AI Guide:\nAI is...'
"""
try:
if not results:
return ""
formatted_results = []
for res in results[:10]:
# Handle None or non-dict entries gracefully
if not isinstance(res, dict):
continue
source = res.get('source', 'Unknown')
title = res.get('title', 'No Title')
body = res.get('body', 'No Content')
# Ensure body is a string and truncate safely
if body:
body_str = str(body)[:1200]
else:
body_str = 'No Content'
formatted_results.append(f"[{source}] {title}:\n{body_str}")
return "\n\n".join(formatted_results)
except Exception as e:
logger.error(f"Error formatting search context: {e}")
return ""
def should_perform_search(prompt: str, history: Optional[List[Dict[str, str]]],
search_decision_mode: str = "balanced") -> Dict[str, Any]:
"""
Determine if web search should be performed based on conversation context and prompt patterns.
This function implements rule-based search decision logic by analyzing:
1. Conversation history presence and quality
2. Follow-up question patterns (elaboration, clarification, referential)
3. New information request indicators
4. Context sufficiency for answering the question
Args:
prompt (str): User's current question/prompt
history (Optional[List[Dict[str, str]]]): Conversation history
search_decision_mode (str): Decision sensitivity ("conservative", "balanced", "aggressive")
Returns:
Dict[str, Any]: Dictionary containing:
- should_search (bool): Whether to perform web search
- reason (str): Explanation for the decision
- confidence (float): Confidence score (0.0-1.0)
Example:
>>> should_perform_search("Tell me more about that", [{"user": "What is AI?", "assistant": "AI is..."}])
{"should_search": False, "reason": "Follow-up question detected", "confidence": 0.8}
"""
try:
# Configuration based on search decision mode
sensitivity_config = {
"conservative": {
"elaboration_threshold": 0.8,
"referential_threshold": 0.7,
"history_weight": 0.9
},
"balanced": {
"elaboration_threshold": 0.6,
"referential_threshold": 0.5,
"history_weight": 0.7
},
"aggressive": {
"elaboration_threshold": 0.4,
"referential_threshold": 0.3,
"history_weight": 0.5
}
}
config = sensitivity_config.get(search_decision_mode, sensitivity_config["balanced"])
prompt_lower = prompt.lower().strip()
# If no history, always search (unless it's a greeting)
if not history or len(history) == 0:
if any(greeting in prompt_lower for greeting in ["hello", "hi", "hey", "good morning", "good afternoon"]):
return {
"should_search": False,
"reason": "Simple greeting detected",
"confidence": 0.9
}
return {
"should_search": True,
"reason": "No conversation history available",
"confidence": 1.0
}
# Pattern detection arrays
elaboration_patterns = [
"elaborate", "explain more", "tell me more", "expand on", "go deeper",
"more details", "can you explain", "give me more", "detail", "expand"
]
clarification_patterns = [
"what do you mean", "can you clarify", "i don't understand", "unclear",
"confusing", "what does that mean", "could you explain", "i'm confused"
]
referential_patterns = [
"this", "that", "it", "the previous", "above mentioned", "earlier",
"you said", "you mentioned", "from before", "the last"
]
continuation_patterns = [
"and what about", "what else", "continue", "also", "additionally",
"furthermore", "what other", "anything else", "more on"
]
# Score patterns
elaboration_score = sum(1 for pattern in elaboration_patterns if pattern in prompt_lower)
clarification_score = sum(1 for pattern in clarification_patterns if pattern in prompt_lower)
referential_score = sum(1 for pattern in referential_patterns if pattern in prompt_lower)
continuation_score = sum(1 for pattern in continuation_patterns if pattern in prompt_lower)
# Calculate total follow-up score
total_followup_score = elaboration_score + clarification_score + referential_score + continuation_score
# Analyze recent conversation history for context relevance
history_context_score = 0
if history:
recent_entries = history[-3:] # Look at last 3 exchanges
for entry in recent_entries:
if "role" in entry and "content" in entry:
if entry["role"] == "assistant":
content = entry["content"].lower()
# Check if recent assistant responses contain substantial information
if len(content.split()) > 20: # Substantial response
history_context_score += 1
elif "assistant" in entry:
content = entry["assistant"].lower()
if len(content.split()) > 20:
history_context_score += 1
# Decision logic
if total_followup_score >= 2: # Strong follow-up indicators
confidence = min(0.9, 0.5 + (total_followup_score * 0.2))
return {
"should_search": False,
"reason": f"Follow-up question detected (score: {total_followup_score})",
"confidence": confidence
}
if referential_score >= 1 and history_context_score >= 1:
confidence = config["referential_threshold"] + (referential_score * 0.1)
return {
"should_search": False,
"reason": "Referential question with sufficient context",
"confidence": min(0.9, confidence)
}
if elaboration_score >= 1 and history_context_score >= 1:
confidence = config["elaboration_threshold"]
if elaboration_score >= 2:
confidence += 0.2
return {
"should_search": False,
"reason": "Elaboration request with existing context",
"confidence": min(0.9, confidence)
}
# Check for new information requests
new_info_patterns = [
"what is", "who is", "when", "where", "how", "why", "latest", "recent",
"current", "update", "news", "today", "now", "2024", "2025"
]
new_info_score = sum(1 for pattern in new_info_patterns if pattern in prompt_lower)
if new_info_score >= 2:
return {
"should_search": True,
"reason": f"New information request detected (score: {new_info_score})",
"confidence": 0.8
}
# Default: search for new topics
return {
"should_search": True,
"reason": "New topic or insufficient context patterns",
"confidence": 0.6
}
except Exception as e:
logger.error(f"Error in rule-based search decision: {e}")
return {
"should_search": True,
"reason": f"Error in analysis, defaulting to search: {str(e)[:50]}",
"confidence": 0.5
}
async def analyze_search_necessity(prompt: str, history: Optional[List[Dict[str, str]]] = None,
conversation_context: str = "", gemini_model=None) -> Dict[str, Any]:
"""
AI-based search necessity analysis using Gemini for intelligent decision making.
This function uses AI to analyze whether a web search is necessary by examining:
1. Question type classification (new info vs clarification)
2. Information sufficiency in conversation history
3. Topic continuity and semantic relationships
4. Recency requirements for the requested information
Args:
prompt (str): User's current question
history (Optional[List[Dict[str, str]]]): Conversation history
conversation_context (str): Formatted conversation context
gemini_model: Google Generative AI model instance
Returns:
Dict[str, Any]: Dictionary containing:
- should_search (bool): AI decision on search necessity
- confidence (float): AI confidence score (0.0-1.0)
- reason (str): Brief explanation of the decision
- analysis (dict): Detailed analysis breakdown
Example:
>>> await analyze_search_necessity("What's the weather like?", [], "", model)
{"should_search": True, "confidence": 0.9, "reason": "Requires current information", ...}
"""
try:
if not gemini_model:
raise ValueError("Gemini model instance required for AI analysis")
# Create cache key for performance optimization
cache_key = f"{hash(prompt)}_{hash(str(history))}"
# Check cache first (cache expires after 5 minutes for this session)
current_time = time.time()
if cache_key in ai_decision_cache:
cached_result, timestamp = ai_decision_cache[cache_key]
if current_time - timestamp < 300: # 5 minute cache
logger.info("Using cached AI search decision")
return cached_result
# Format conversation history for AI analysis
from app import format_conversation_history # Import to avoid circular dependency
history_text = format_conversation_history(history, max_entries=5) if history else "No previous conversation"
# Create AI prompt for search decision analysis
analysis_prompt = f"""
Analyze whether a web search is necessary for the following user question, considering the conversation history.
**Conversation History:**
{history_text}
**Current Question:** {prompt}
**Context:** {conversation_context[:500] if conversation_context else "No additional context"}
Please analyze:
1. **Question Type**: Is this asking for new information, clarification, elaboration, or continuation?
2. **Information Sufficiency**: Does the conversation history contain enough information to answer this question?
3. **Topic Continuity**: Is this question related to the previous conversation topics?
4. **Recency Requirements**: Does this question require current/recent information that might not be in the history?
5. **Semantic Relationship**: How semantically similar is this question to previous exchanges?
Based on your analysis, determine if a web search is needed. Respond with a JSON object:
{{
"should_search": true/false,
"confidence": 0.0-1.0,
"reason": "Brief explanation of the decision",
"analysis": {{
"question_type": "new_information|clarification|elaboration|continuation",
"information_sufficient": true/false,
"topic_continuity": true/false,
"requires_recent_info": true/false,
"semantic_similarity": 0.0-1.0
}}
}}
**Guidelines:**
- If the question asks for new information not covered in history: should_search = true
- If asking for clarification/elaboration of existing history content: should_search = false
- If asking for recent/current information (dates, news, updates): should_search = true
- If question is semantically very similar to recent history: should_search = false
- Confidence should reflect how certain you are about the decision
"""
# Make AI call with timeout
try:
ai_response = await asyncio.wait_for(
gemini_model.generate_content_async(analysis_prompt),
timeout=5.0 # 5 second timeout for AI decision
)
# Parse AI response
response_text = ai_response.text.strip()
# Extract JSON from response (handle cases where AI adds extra text)
json_match = re.search(r'\{.*\}', response_text, re.DOTALL)
if json_match:
json_str = json_match.group()
result = json.loads(json_str)
# Validate required fields
required_fields = ['should_search', 'confidence', 'reason']
if all(field in result for field in required_fields):
# Ensure confidence is within valid range
result['confidence'] = max(0.0, min(1.0, float(result['confidence'])))
# Cache the result
ai_decision_cache[cache_key] = (result, current_time)
logger.info(f"AI search decision: {result['should_search']} (confidence: {result['confidence']:.2f}) - {result['reason']}")
return result
else:
raise ValueError("Missing required fields in AI response")
else:
raise ValueError("No valid JSON found in AI response")
except asyncio.TimeoutError:
logger.warning("AI search decision timed out")
raise
except Exception as e:
logger.error(f"AI search decision parsing error: {e}")
raise
except Exception as e:
logger.error(f"AI search analysis failed: {e}")
# Return fallback decision indicating AI failure
return {
"should_search": True, # Conservative fallback
"confidence": 0.3,
"reason": f"AI analysis failed: {str(e)[:100]}",
"analysis": {"ai_failed": True}
}
def has_meaningful_conversation_history(history: Optional[List[Dict[str, str]]] = None) -> bool:
"""
Detect if request has meaningful conversation history for context-aware flow routing.
This function analyzes conversation history to determine if there's sufficient
context for making informed search decisions. It handles both conversation
formats and validates content quality.
Args:
history (Optional[List[Dict[str, str]]]): Conversation history list
Supports formats: [{"role": "user/assistant", "content": "..."}]
or [{"user": "...", "assistant": "..."}]
Returns:
bool: True if conversation has meaningful history, False otherwise
Example:
>>> has_meaningful_conversation_history([{"user": "Hi", "assistant": "Hello there!"}])
True
>>> has_meaningful_conversation_history([])
False
"""
try:
if not history or len(history) == 0:
return False
# Check for malformed history entries
meaningful_entries = 0
for entry in history:
if isinstance(entry, dict):
# Handle both formats: {"role": "user/assistant", "content": "..."}
# and {"user": "...", "assistant": "..."}
if ("role" in entry and "content" in entry and
entry.get("content", "").strip() and
len(entry["content"].strip()) > 5): # Minimum meaningful content
meaningful_entries += 1
elif ("user" in entry and "assistant" in entry and
entry.get("user", "").strip() and entry.get("assistant", "").strip() and
len(entry["user"].strip()) > 5 and len(entry["assistant"].strip()) > 5):
meaningful_entries += 1
# Consider history meaningful if we have at least one substantive exchange
return meaningful_entries >= 1
except Exception as e:
logger.warning(f"Error detecting conversation history: {e}")
return False # Conservative fallback
def analyze_conversation_context(prompt: str, history: Optional[List[Dict[str, str]]] = None,
nlp_model=None) -> Dict[str, Any]:
"""
Analyze conversation context for semantic similarity and topic continuity.
This function performs sophisticated context analysis using NLP techniques:
1. Semantic similarity analysis using spaCy word vectors
2. Topic continuity assessment through keyword overlap
3. Information coverage evaluation based on history richness
4. Context quality scoring for decision confidence
Args:
prompt (str): Current user question
history (Optional[List[Dict[str, str]]]): Conversation history
nlp_model: spaCy language model for semantic analysis
Returns:
Dict[str, Any]: Dictionary containing context analysis metrics:
- topic_continuity (float): Topic overlap score (0.0-1.0)
- semantic_similarity (float): Average semantic similarity (0.0-1.0)
- information_coverage (float): History coverage score (0.0-1.0)
- context_richness (float): Overall context quality (0.0-1.0)
Example:
>>> analyze_conversation_context("Tell me more", [{"assistant": "AI is..."}], nlp)
{"topic_continuity": 0.7, "semantic_similarity": 0.8, ...}
"""
try:
if not nlp_model:
raise ValueError("NLP model required for context analysis")
if not history or len(history) == 0:
return {
"topic_continuity": 0.0,
"semantic_similarity": 0.0,
"information_coverage": 0.0,
"context_richness": 0.0
}
# Use spaCy to analyze semantic similarity
prompt_doc = nlp_model(prompt.lower())
# Analyze recent conversation entries
recent_entries = history[-3:] if len(history) > 3 else history
similarity_scores = []
topic_keywords = set()
total_context_length = 0
for entry in recent_entries:
if "role" in entry and "content" in entry and entry["role"] == "assistant":
content = entry["content"]
content_doc = nlp_model(content.lower())
# Calculate semantic similarity
similarity = prompt_doc.similarity(content_doc)
similarity_scores.append(similarity)
# Extract topic keywords
for token in content_doc:
if not token.is_stop and not token.is_punct and len(token.text) > 2:
topic_keywords.add(token.lemma_)
total_context_length += len(content.split())
elif "assistant" in entry:
content = entry["assistant"]
content_doc = nlp_model(content.lower())
similarity = prompt_doc.similarity(content_doc)
similarity_scores.append(similarity)
for token in content_doc:
if not token.is_stop and not token.is_punct and len(token.text) > 2:
topic_keywords.add(token.lemma_)
total_context_length += len(content.split())
# Calculate metrics
avg_similarity = sum(similarity_scores) / len(similarity_scores) if similarity_scores else 0.0
# Topic continuity based on keyword overlap
prompt_keywords = set()
for token in prompt_doc:
if not token.is_stop and not token.is_punct and len(token.text) > 2:
prompt_keywords.add(token.lemma_)
topic_overlap = len(prompt_keywords.intersection(topic_keywords)) / max(len(prompt_keywords), 1)
# Information coverage (how much context is available)
context_richness = min(1.0, total_context_length / 100) # Normalize to 0-1
return {
"topic_continuity": topic_overlap,
"semantic_similarity": avg_similarity,
"information_coverage": len(recent_entries) / 3.0, # Normalized to max 3 entries
"context_richness": context_richness
}
except Exception as e:
logger.error(f"Context analysis failed: {e}")
return {
"topic_continuity": 0.0,
"semantic_similarity": 0.0,
"information_coverage": 0.0,
"context_richness": 0.0
}
async def hybrid_search_decision(prompt: str, history: Optional[List[Dict[str, str]]] = None,
search_decision_mode: str = "balanced", nlp_model=None,
gemini_model=None) -> Dict[str, Any]:
"""
Hybrid search decision combining rule-based and AI-based analysis.
This function implements the core hybrid decision engine that combines:
1. Fast rule-based pattern matching for obvious cases
2. AI analysis for ambiguous scenarios requiring deeper understanding
3. Context analysis for semantic relationship assessment
4. Confidence-based decision weighting and fallback mechanisms
Args:
prompt (str): User's current question
history (Optional[List[Dict[str, str]]]): Conversation history
search_decision_mode (str): Decision mode ("conservative", "balanced", "aggressive")
nlp_model: spaCy language model for context analysis
gemini_model: Google Generative AI model for intelligent analysis
Returns:
Dict[str, Any]: Comprehensive decision dictionary containing:
- should_search (bool): Final search decision
- confidence (float): Overall confidence score
- reason (str): Explanation of decision logic
- rule_decision (dict): Rule-based analysis results
- ai_decision (dict, optional): AI analysis results if used
- context_analysis (dict): Semantic context metrics
- decision_method (str): Method used ("rule_based", "hybrid", "fallback_rule")
Example:
>>> await hybrid_search_decision("What else can you tell me?", history, "balanced", nlp, ai)
{"should_search": False, "confidence": 0.85, "reason": "Rule-based: Follow-up detected", ...}
"""
try:
# Step 1: Get rule-based decision
rule_decision = should_perform_search(prompt, history, search_decision_mode)
# Step 2: Analyze conversation context
context_analysis = analyze_conversation_context(prompt, history, nlp_model)
# Step 3: Determine if AI analysis is needed
ai_threshold = {
"conservative": 0.8,
"balanced": 0.6,
"aggressive": 0.4
}.get(search_decision_mode, 0.6)
# Use AI for ambiguous cases (low confidence rule decisions)
if rule_decision["confidence"] < ai_threshold:
logger.info(f"Rule confidence {rule_decision['confidence']:.2f} below threshold {ai_threshold}, using AI analysis")
# Get AI decision
from app import format_conversation_history # Import to avoid circular dependency
conversation_context = format_conversation_history(history, max_entries=3)
ai_decision = await analyze_search_necessity(prompt, history, conversation_context, gemini_model)
# Combine decisions with weighted confidence
rule_weight = rule_decision["confidence"]
ai_weight = ai_decision["confidence"]
total_weight = rule_weight + ai_weight
if total_weight > 0:
# Weighted decision
final_should_search = (
(rule_decision["should_search"] * rule_weight +
ai_decision["should_search"] * ai_weight) / total_weight
) > 0.5
final_confidence = (rule_decision["confidence"] + ai_decision["confidence"]) / 2
else:
# Fallback to rule decision
final_should_search = rule_decision["should_search"]
final_confidence = rule_decision["confidence"]
return {
"should_search": final_should_search,
"confidence": final_confidence,
"reason": f"Hybrid: Rule={rule_decision['reason'][:50]}..., AI={ai_decision['reason'][:50]}...",
"rule_decision": rule_decision,
"ai_decision": ai_decision,
"context_analysis": context_analysis,
"decision_method": "hybrid"
}
else:
# High confidence rule decision, no need for AI
logger.info(f"Rule confidence {rule_decision['confidence']:.2f} above threshold, using rule-based decision")
return {
"should_search": rule_decision["should_search"],
"confidence": rule_decision["confidence"],
"reason": f"Rule-based: {rule_decision['reason']}",
"rule_decision": rule_decision,
"context_analysis": context_analysis,
"decision_method": "rule_based"
}
except Exception as e:
logger.error(f"Hybrid search decision failed: {e}")
# Fallback to rule-based decision
rule_decision = should_perform_search(prompt, history, search_decision_mode)
return {
"should_search": rule_decision["should_search"],
"confidence": rule_decision["confidence"],
"reason": f"Fallback to rules due to error: {str(e)[:50]}",
"rule_decision": rule_decision,
"decision_method": "fallback_rule",
"error": str(e)
}
# Convenience functions for maintaining backward compatibility
def get_search_optimizer_instance(nlp_model, rake_instance, gemini_model) -> SearchOptimizer:
"""
Factory function to create SearchOptimizer instance with dependencies.
Args:
nlp_model: spaCy language model instance
rake_instance: RAKE keyword extraction instance
gemini_model: Google Generative AI model instance
Returns:
SearchOptimizer: Configured optimizer instance
"""
return SearchOptimizer(nlp_model, rake_instance, gemini_model) |