gateway/modules/services/serviceAi/mainServiceAi.py
2025-10-03 01:41:50 +02:00

1010 lines
45 KiB
Python

import logging
from typing import Dict, Any, List, Optional, Tuple, Union
from modules.datamodels.datamodelChat import ChatDocument
from modules.services.serviceExtraction.mainServiceExtraction import ExtractionService
from modules.datamodels.datamodelAi import AiCallRequest, AiCallOptions, ModelCapabilities, OperationType, Priority
from modules.datamodels.datamodelWeb import (
WebResearchRequest,
WebResearchActionResult,
WebResearchDocumentData,
WebResearchActionDocument,
WebSearchResultItem,
)
from modules.interfaces.interfaceAiObjects import AiObjects
logger = logging.getLogger(__name__)
# Model registry is now provided by interfaces via AiModels
class AiService:
"""Centralized AI service orchestrating documents, model selection, failover, and web operations.
"""
def __init__(self, serviceCenter=None) -> None:
"""Initialize AI service with service center access.
Args:
serviceCenter: Service center instance for accessing other services
"""
self.serviceCenter = serviceCenter
# Only depend on interfaces
self.aiObjects = None # Will be initialized in create()
self._extractionService = None # Lazy initialization
@property
def extractionService(self):
"""Lazy initialization of extraction service."""
if self._extractionService is None:
logger.info("Lazy initializing ExtractionService...")
self._extractionService = ExtractionService()
return self._extractionService
@classmethod
async def create(cls, serviceCenter=None) -> "AiService":
"""Create AiService instance with all connectors initialized."""
logger.info("AiService.create() called")
instance = cls(serviceCenter)
logger.info("AiService created, about to call AiObjects.create()...")
instance.aiObjects = await AiObjects.create()
logger.info("AiObjects.create() completed")
return instance
# AI Image Analysis
async def readImage(
self,
prompt: str,
imageData: Union[str, bytes],
mimeType: str = None,
options: Optional[AiCallOptions] = None,
) -> str:
"""Call AI for image analysis using interface.callImage()."""
try:
return await self.aiObjects.callImage(prompt, imageData, mimeType, options)
except Exception as e:
logger.error(f"Error in AI image analysis: {str(e)}")
return f"Error: {str(e)}"
# AI Image Generation
async def generateImage(
self,
prompt: str,
size: str = "1024x1024",
quality: str = "standard",
style: str = "vivid",
options: Optional[AiCallOptions] = None,
) -> Dict[str, Any]:
"""Generate an image using AI using interface.generateImage()."""
try:
return await self.aiObjects.generateImage(prompt, size, quality, style, options)
except Exception as e:
logger.error(f"Error in AI image generation: {str(e)}")
return {"success": False, "error": str(e)}
# Web Research - Using interface functions
async def webResearch(self, request: WebResearchRequest) -> WebResearchActionResult:
"""Perform web research using interface functions."""
try:
logger.info(f"WEB RESEARCH STARTED")
logger.info(f"User Query: {request.search_query}")
logger.info(f"Max Results: {request.max_results}, Max Pages: {request.options.max_pages}")
# Step 1: Find relevant websites - either provided URLs or AI-determined main URLs
logger.info(f"=== STEP 1: INITIAL MAIN URLS LIST ===")
if request.urls:
# Use provided URLs as initial main URLs
websites = request.urls
logger.info(f"Using provided URLs ({len(websites)}):")
for i, url in enumerate(websites, 1):
logger.info(f" {i}. {url}")
else:
# Use AI to determine main URLs based on user's intention
logger.info(f"AI analyzing user intent: '{request.search_query}'")
# Use AI to generate optimized Tavily search query and selection strategy
query_optimizer_prompt = f"""You are a search query optimizer and web page selector.
Given a user query, perform two tasks:
TASK 1 - GENERATE TAVILY SEARCH QUERY:
Analyze the user's intent and extract the core search terms.
- For entity-specific queries (companies, people, products): Use entity name + key identifiers
- For informational queries (how to, what is): Use core concept keywords
- For transactional queries (where to buy, find services): Use action + category
- Keep it 2-6 words maximum, keyword format only
TASK 2 - DEFINE URL SELECTION STRATEGY:
Determine what type of results the user needs:
A) SINGLE AUTHORITATIVE SOURCE
Use when: Looking for specific entity information (company profile, person bio, specific product)
Select: Official website, primary domain, or most authoritative single page
B) MULTIPLE DIVERSE SOURCES
Use when: Comparing options, finding services, shopping, research across sources
Select: Multiple relevant URLs (5-15), prioritizing diversity and relevance
C) SPECIFIC PAGE TYPE
Use when: Looking for particular content (documentation, pricing, contact, careers)
Select: Deep links to specific page types on relevant sites
Return your response in this exact JSON format:
{{
"search_query": "your generated search query",
"selection_strategy": "single|multiple|specific_page",
"selection_criteria": "description of what URLs to prioritize",
"expected_url_patterns": ["pattern1", "pattern2"],
"estimated_result_count": number
}}
USER QUERY: {request.search_query}"""
# Get AI response for query optimization
ai_request = AiCallRequest(
prompt=query_optimizer_prompt,
options=AiCallOptions()
)
ai_response_obj = await self.aiObjects.call(ai_request)
ai_response = ai_response_obj.content
logger.debug(f"AI query optimizer response: {ai_response}")
# Parse AI response to extract search query
import json
try:
# Clean the response by removing markdown code blocks
cleaned_response = ai_response.strip()
if cleaned_response.startswith('```json'):
cleaned_response = cleaned_response[7:] # Remove ```json
if cleaned_response.endswith('```'):
cleaned_response = cleaned_response[:-3] # Remove ```
cleaned_response = cleaned_response.strip()
query_data = json.loads(cleaned_response)
search_query = query_data.get("search_query", request.search_query)
selection_strategy = query_data.get("selection_strategy", "multiple")
selection_criteria = query_data.get("selection_criteria", "relevant URLs")
expected_patterns = query_data.get("expected_url_patterns", [])
estimated_count = query_data.get("estimated_result_count", request.max_results)
logger.info(f"AI optimized search query: '{search_query}'")
logger.info(f"Selection strategy: {selection_strategy}")
logger.info(f"Selection criteria: {selection_criteria}")
logger.info(f"Expected URL patterns: {expected_patterns}")
logger.info(f"Estimated result count: {estimated_count}")
except json.JSONDecodeError:
logger.warning("Failed to parse AI response as JSON, using original query")
search_query = request.search_query
selection_strategy = "multiple"
# Perform the web search with optimized query
search_results = await self.aiObjects.search_websites(
query=search_query,
max_results=request.max_results,
auto_parameters=True
)
logger.debug(f"Web search returned {len(search_results)} results:")
for i, result in enumerate(search_results, 1):
logger.debug(f" {i}. {result.url} - {result.title}")
# Deduplicate while preserving order
seen = set()
search_urls = []
for r in search_results:
u = str(r.url)
if u not in seen:
seen.add(u)
search_urls.append(u)
if not search_urls:
logger.error("No relevant websites found")
return WebResearchActionResult(success=False, error="No relevant websites found")
# Now use AI to determine the main URLs based on user's intention
logger.info(f"AI selecting main URLs from {len(search_urls)} search results based on user intent")
# Create a prompt for AI to identify main URLs based on user's intention
ai_prompt = f"""
Select the most relevant URLs from these search results:
{chr(10).join([f"{i+1}. {url}" for i, url in enumerate(search_urls)])}
Return only the URLs that are most relevant for the user's query.
One URL per line.
"""
# Create AI call request
ai_request = AiCallRequest(
prompt=ai_prompt,
options=AiCallOptions()
)
ai_response_obj = await self.aiObjects.call(ai_request)
ai_response = ai_response_obj.content
logger.debug(f"AI response for main URL selection: {ai_response}")
# Parse AI response to extract URLs
websites = []
for line in ai_response.strip().split('\n'):
line = line.strip()
if line and ('http://' in line or 'https://' in line):
# Extract URL from the line
for word in line.split():
if word.startswith('http://') or word.startswith('https://'):
websites.append(word.rstrip('.,;'))
break
if not websites:
logger.warning("AI did not identify any main URLs, using first few search results")
websites = search_urls[:3] # Fallback to first 3 search results
# Deduplicate while preserving order
seen = set()
unique_websites = []
for url in websites:
if url not in seen:
seen.add(url)
unique_websites.append(url)
websites = unique_websites
logger.info(f"AI selected {len(websites)} main URLs (after deduplication):")
for i, url in enumerate(websites, 1):
logger.info(f" {i}. {url}")
# Step 2: Smart website selection using AI interface
logger.info(f"=== STEP 2: FILTERED URL LIST BY USER PROMPT'S INTENTION ===")
logger.info(f"AI analyzing {len(websites)} URLs for relevance to: '{request.search_query}'")
selectedWebsites, aiResponse = await self.aiObjects.selectRelevantWebsites(websites, request.search_query)
logger.debug(f"AI Response: {aiResponse}")
logger.debug(f"AI selected {len(selectedWebsites)} most relevant URLs:")
for i, url in enumerate(selectedWebsites, 1):
logger.debug(f" {i}. {url}")
# Show which were filtered out
filtered_out = [url for url in websites if url not in selectedWebsites]
if filtered_out:
logger.debug(f"Filtered out {len(filtered_out)} less relevant URLs:")
for i, url in enumerate(filtered_out, 1):
logger.debug(f" {i}. {url}")
# Step 3+4+5: Recursive crawling with configurable depth
logger.info(f"=== STEP 3+4+5: RECURSIVE CRAWLING (DEPTH {request.options.pages_search_depth}) ===")
logger.info(f"Starting recursive crawl of {len(selectedWebsites)} main websites...")
logger.info(f"Search depth: {request.options.pages_search_depth} levels")
# Use recursive crawling with URL index to avoid duplicates
allContent = await self.aiObjects.crawlRecursively(
urls=selectedWebsites,
max_depth=request.options.pages_search_depth,
extract_depth=request.options.extract_depth,
max_per_domain=10
)
if not allContent:
logger.error("Could not extract content from any websites")
return WebResearchActionResult(success=False, error="Could not extract content from any websites")
logger.info(f"=== WEB RESEARCH COMPLETED ===")
logger.info(f"Successfully crawled {len(allContent)} URLs total")
logger.info(f"Crawl depth: {request.options.pages_search_depth} levels")
# Create simple result with raw content
sources = [WebSearchResultItem(title=url, url=url) for url in selectedWebsites]
# Get all additional links (all URLs except main ones)
additional_links = [url for url in allContent.keys() if url not in selectedWebsites]
# Combine all content into a single result
combinedContent = ""
for url, content in allContent.items():
combinedContent += f"\n\n=== {url} ===\n{content}\n"
documentData = WebResearchDocumentData(
search_query=request.search_query,
websites_analyzed=len(allContent),
additional_links_found=len(additional_links),
analysis_result=combinedContent, # Raw content, no analysis
sources=sources,
additional_links=additional_links,
individual_content=allContent, # Individual URL -> content mapping
debug_info={
"crawl_depth": request.options.pages_search_depth,
"total_urls_crawled": len(allContent),
"main_urls": len(selectedWebsites),
"additional_urls": len(additional_links)
}
)
document = WebResearchActionDocument(
documentName=f"web_research_{request.search_query[:50]}.json",
documentData=documentData,
mimeType="application/json"
)
return WebResearchActionResult(
success=True,
documents=[document],
resultLabel="web_research_results"
)
except Exception as e:
logger.error(f"Error in web research: {str(e)}")
return WebResearchActionResult(success=False, error=str(e))
async def _processDocumentsForAi(
self,
documents: List[ChatDocument],
operationType: str,
compressDocuments: bool,
processIndividually: bool,
userPrompt: str,
options: Optional[AiCallOptions] = None
) -> str:
if not documents:
return ""
# Calculate model-derived size limits
maxContextBytes = self._calculateMaxContextBytes(options)
# Build extraction options with model-derived limits
extractionOptions: Dict[str, Any] = {
"prompt": f"Extract content that supports the user's request: '{userPrompt}'. Focus on information relevant to: {operationType}",
"operationType": operationType,
"processDocumentsIndividually": processIndividually,
"maxSize": maxContextBytes,
"chunkAllowed": not options.compressContext if options else True,
"textChunkSize": int(maxContextBytes * 0.3), # 30% of max for text chunks
"imageChunkSize": int(maxContextBytes * 0.5), # 50% of max for image chunks
"imageMaxPixels": 1024 * 1024, # 1MP default
"imageQuality": 85,
"mergeStrategy": {
"groupBy": "typeGroup",
"orderBy": "id",
"mergeType": "concatenate"
},
}
processedContents: List[str] = []
try:
# Use new ChatDocument-based API
logger.info(f"=== PROCESSING {len(documents)} DOCUMENTS FOR AI ===")
for i, doc in enumerate(documents):
logger.info(f"Document {i}: {doc.fileName} (MIME: {doc.mimeType})")
extractionResult = self.extractionService.extractContent(documents, extractionOptions)
logger.info(f"Extraction completed: {len(extractionResult)} results")
async def _partsToText(parts, documentName: str, documentType: str) -> str:
lines: List[str] = []
logger.debug(f"Processing {len(parts)} content parts for {documentName}")
for p in parts:
logger.debug(f" Part: {p.typeGroup} ({p.mimeType}) - {len(p.data) if p.data else 0} chars")
if p.typeGroup in ("text", "table", "structure") and p.data and isinstance(p.data, str):
lines.append(p.data)
elif p.typeGroup == "image" and p.data:
# Use AI to extract text from image with user prompt
logger.debug(f" Processing image with AI using user prompt...")
try:
imageResult = await self.aiObjects.callImage(
prompt=userPrompt,
imageData=p.data,
mimeType=p.mimeType
)
lines.append(f"[Image Analysis]: {imageResult}")
logger.debug(f" AI image analysis completed: {len(imageResult)} chars")
except Exception as e:
logger.warning(f" AI image processing failed: {e}")
lines.append(f"[Image Analysis Failed]: {str(e)}")
return "\n\n".join(lines)
if isinstance(extractionResult, list):
for i, ec in enumerate(extractionResult):
try:
# Get document info for this extraction result
doc = documents[i] if i < len(documents) else None
docName = doc.fileName if doc else f"Document_{i}"
docType = doc.mimeType if doc else "unknown"
contentText = await _partsToText(ec.parts, docName, docType)
logger.debug(f"Document {i} content: {len(contentText)} chars")
if compressDocuments and len(contentText.encode("utf-8")) > 10000:
originalLength = len(contentText)
contentText = await self._compressContent(contentText, 10000, "document")
logger.debug(f"Document {i} compressed: {originalLength} -> {len(contentText)} chars")
processedContents.append(contentText)
except Exception as e:
logger.warning(f"Error aggregating extracted content: {str(e)}")
processedContents.append("[Error aggregating content]")
else:
# Fallback: no content
contentText = ""
if compressDocuments and len(contentText.encode("utf-8")) > 10000:
contentText = await self._compressContent(contentText, 10000, "document")
processedContents.append(contentText)
except Exception as e:
logger.warning(f"Error during extraction: {str(e)}")
processedContents.append("[Error during extraction]")
# Build JSON structure ONLY when adding to AI prompt
import json
documentsJson = []
for i, content in enumerate(processedContents):
doc = documents[i] if i < len(documents) else None
docName = doc.fileName if doc else f"Document_{i}"
docType = doc.mimeType if doc else "unknown"
documentData = {
"documentName": docName,
"documentType": docType,
"content": content
}
documentsJson.append(documentData)
finalContext = json.dumps({
"documents": documentsJson,
"totalDocuments": len(documentsJson)
}, indent=2, ensure_ascii=False)
logger.debug(f"=== FINAL CONTEXT ===")
logger.debug(f"Total context: {len(finalContext)} chars")
logger.debug(f"Documents: {len(documentsJson)}")
return finalContext
def _calculateMaxContextBytes(self, options: Optional[AiCallOptions]) -> int:
"""Calculate maximum context bytes based on model capabilities and options."""
if options and options.maxContextBytes:
return options.maxContextBytes
# Default model capabilities (this should be enhanced with actual model registry)
defaultMaxTokens = 4000
safetyMargin = options.safetyMargin if options else 0.1
# Calculate bytes (4 chars per token estimation)
maxContextBytes = int(defaultMaxTokens * (1 - safetyMargin) * 4)
return maxContextBytes
async def _processDocumentsPerChunk(
self,
documents: List[ChatDocument],
prompt: str,
options: Optional[AiCallOptions] = None
) -> str:
"""
Process documents with per-chunk AI calls and merge results.
Args:
documents: List of ChatDocument objects to process
prompt: AI prompt for processing
options: AI call options
Returns:
Merged AI results as string
"""
if not documents:
return ""
# Get model capabilities for size calculation
model_capabilities = self._getModelCapabilitiesForContent(prompt, documents, options)
# Build extraction options for chunking
extractionOptions: Dict[str, Any] = {
"prompt": prompt,
"operationType": options.operationType if options else "general",
"processDocumentsIndividually": True, # Process each document separately
"maxSize": model_capabilities["maxContextBytes"],
"chunkAllowed": True,
"textChunkSize": model_capabilities["textChunkSize"],
"imageChunkSize": model_capabilities["imageChunkSize"],
"imageMaxPixels": 1024 * 1024,
"imageQuality": 85,
"mergeStrategy": {
"groupBy": "typeGroup",
"orderBy": "id",
"mergeType": "concatenate"
},
}
logger.debug(f"Per-chunk extraction options: {extractionOptions}")
try:
# Extract content with chunking
extractionResult = self.extractionService.extractContent(documents, extractionOptions)
if not isinstance(extractionResult, list):
return "[Error: No extraction results]"
# Process each chunk with AI
aiResults: List[str] = []
for ec in extractionResult:
for part in ec.parts:
if part.typeGroup == "image":
# Process image with AI
try:
aiResult = await self.readImage(
prompt=prompt,
imageData=part.data,
mimeType=part.mimeType,
options=options
)
aiResults.append(aiResult)
except Exception as e:
logger.warning(f"Error processing image chunk: {str(e)}")
aiResults.append(f"[Error processing image: {str(e)}]")
elif part.typeGroup in ("text", "table", "structure"):
# Process text content with AI
try:
logger.info(f"=== PROCESSING CHUNK {len(aiResults) + 1} ===")
logger.info(f"Chunk size: {len(part.data)} chars")
logger.info(f"Chunk preview: {part.data[:200]}...")
# Create AI call request for this chunk
request = AiCallRequest(
prompt=prompt,
context=part.data,
options=options
)
# Make the call using AiObjects
response = await self.aiObjects.call(request)
aiResults.append(response.content)
logger.info(f"Chunk {len(aiResults)} processed: {len(response.content)} chars response")
except Exception as e:
logger.warning(f"Error processing text chunk: {str(e)}")
aiResults.append(f"[Error processing text: {str(e)}]")
# Merge AI results using ExtractionService
from modules.datamodels.datamodelExtraction import MergeStrategy
mergeStrategy = MergeStrategy(
groupBy="typeGroup",
orderBy="id",
mergeType="concatenate",
chunkSeparator="\n\n---\n\n"
)
mergedContent = self.extractionService.mergeAiResults(
extractionResult,
aiResults,
mergeStrategy
)
# Extract text from merged content
resultText = ""
for part in mergedContent.parts:
if part.typeGroup in ("text", "table", "structure") and part.data:
resultText += part.data + "\n\n"
return resultText.strip()
except Exception as e:
logger.error(f"Error in per-chunk processing: {str(e)}")
return f"[Error in per-chunk processing: {str(e)}]"
async def _compressContent(self, content: str, targetSize: int, contentType: str) -> str:
if len(content.encode("utf-8")) <= targetSize:
return content
try:
compressionPrompt = f"""
Komprimiere den folgenden {contentType} auf maximal {targetSize} Zeichen,
behalte aber alle wichtigen Informationen bei:
{content}
Gib nur den komprimierten Inhalt zurück, ohne zusätzliche Erklärungen.
"""
# Service must not call connectors directly; use simple truncation fallback here
data = content.encode("utf-8")
return data[:targetSize].decode("utf-8", errors="ignore") + "... [truncated]"
except Exception as e:
logger.warning(f"AI compression failed, using truncation: {str(e)}")
return content[:targetSize] + "... [truncated]"
# ===== DYNAMIC GENERIC AI CALLS IMPLEMENTATION =====
async def callAi(
self,
prompt: str,
documents: Optional[List[ChatDocument]] = None,
placeholders: Optional[Dict[str, str]] = None,
options: Optional[AiCallOptions] = None
) -> str:
"""
Unified AI call interface that automatically routes to appropriate handler.
Args:
prompt: The main prompt for the AI call
documents: Optional list of documents to process
placeholders: Optional dictionary of placeholder replacements for planning calls
options: AI call configuration options
Returns:
AI response as string
Raises:
Exception: If all available models fail
"""
if options is None:
options = AiCallOptions()
# Auto-determine call type based on documents and operation type
call_type = self._determineCallType(documents, options.operationType)
options.callType = call_type
if call_type == "planning":
return await self._callAiPlanning(prompt, placeholders, options)
else:
# Set processDocumentsIndividually from the legacy parameter if not set in options
if options.processDocumentsIndividually is None and documents:
options.processDocumentsIndividually = False # Default to batch processing
return await self._callAiText(prompt, documents, options)
def _determineCallType(self, documents: Optional[List[ChatDocument]], operation_type: str) -> str:
"""
Determine call type based on documents and operation type.
Criteria: no documents AND (operationType is "generate_plan" or "analyse_content") -> planning
"""
has_documents = documents is not None and len(documents) > 0
is_planning_operation = operation_type in [OperationType.GENERATE_PLAN, OperationType.ANALYSE_CONTENT]
if not has_documents and is_planning_operation:
return "planning"
else:
return "text"
async def _callAiPlanning(
self,
prompt: str,
placeholders: Optional[Dict[str, str]],
options: AiCallOptions
) -> str:
"""
Handle planning calls with placeholder system and selective summarization.
"""
# Get available models for planning (text + reasoning capabilities)
models = self._getModelsForOperation("planning", options)
for model in models:
try:
# Build full prompt with placeholders
full_prompt = self._buildPromptWithPlaceholders(prompt, placeholders)
# Check size and reduce if needed
if self._exceedsTokenLimit(full_prompt, model, options.safetyMargin):
full_prompt = self._reducePlanningPrompt(full_prompt, placeholders, model, options)
# Make AI call using the connector directly
result = await self._makeAiCall(full_prompt, model, options)
return result
except Exception as e:
logger.warning(f"Planning model {model.name} failed: {e}")
continue
raise Exception("All planning models failed - check model availability and capabilities")
async def _callAiText(
self,
prompt: str,
documents: Optional[List[ChatDocument]],
options: AiCallOptions
) -> str:
"""
Handle text calls with document processing through ExtractionService.
"""
# Determine processing strategy based on options
if options.processDocumentsIndividually and documents:
# Use per-chunk processing for individual document processing
return await self._processDocumentsPerChunk(documents, prompt, options)
# Check if we need chunking - if so, use per-chunk processing
if documents and not options.compressContext:
# Get model capabilities to check if chunking will be needed
model_capabilities = self._getModelCapabilitiesForContent(prompt, documents, options)
total_doc_size = sum(doc.fileSize or 0 for doc in documents)
if total_doc_size > model_capabilities["maxContextBytes"]:
logger.info(f"Document size ({total_doc_size}) exceeds model capacity ({model_capabilities['maxContextBytes']}), using per-chunk processing")
return await self._processDocumentsPerChunk(documents, prompt, options)
# Extract and process documents using ExtractionService
context = ""
if documents:
logger.info(f"=== EXTRACTING CONTENT FROM {len(documents)} DOCUMENTS ===")
# Get model capabilities for size calculation
model_capabilities = self._getModelCapabilitiesForContent(prompt, documents, options)
# Use new ChatDocument-based API
extraction_options = {
"prompt": prompt,
"operationType": options.operationType,
"processDocumentsIndividually": options.processDocumentsIndividually,
"maxSize": options.maxContextBytes or model_capabilities["maxContextBytes"],
"chunkAllowed": not options.compressContext,
"textChunkSize": model_capabilities["textChunkSize"],
"imageChunkSize": model_capabilities["imageChunkSize"],
"imageMaxPixels": 1024 * 1024,
"imageQuality": 85,
"mergeStrategy": {"groupBy": "typeGroup", "orderBy": "id", "mergeType": "concatenate"}
}
logger.debug(f"Extraction options: {extraction_options}")
extracted_content = self.extractionService.extractContent(
documents=documents,
options=extraction_options
)
logger.info(f"Extraction completed: {len(extracted_content)} documents")
# Build context from list of ExtractedContent
if isinstance(extracted_content, list):
context_parts = []
chunk_count = 0
for ec in extracted_content:
for p in ec.parts:
if p.typeGroup in ["text", "table", "structure"] and p.data:
if p.metadata.get("chunk", False):
chunk_count += 1
context_parts.append(p.data)
elif p.typeGroup == "image" and p.data:
# Process image with AI using user prompt
try:
imageResult = await self.aiObjects.callImage(
prompt=prompt,
imageData=p.data,
mimeType=p.mimeType
)
context_parts.append(f"[Image Analysis]: {imageResult}")
except Exception as e:
logger.warning(f"AI image processing failed: {e}")
context_parts.append(f"[Image Analysis Failed]: {str(e)}")
if chunk_count > 0:
logger.debug(f"=== PROCESSING CHUNKED CONTENT ===")
logger.debug(f"Total chunks: {chunk_count}")
logger.debug(f"Total context parts: {len(context_parts)}")
context = "\n\n---\n\n".join(context_parts)
else:
context = ""
# Check size and reduce if needed
full_prompt = prompt + "\n\n" + context if context else prompt
logger.debug(f"AI call: {len(full_prompt)} chars (prompt: {len(prompt)}, context: {len(context)})")
# Use AiObjects to select the best model and make the call
try:
# Create AI call request
request = AiCallRequest(
prompt=full_prompt,
context="", # Context is already included in the prompt
options=options
)
# Make the call using AiObjects (which handles model selection)
response = await self.aiObjects.call(request)
logger.debug(f"=== AI RESPONSE ===")
logger.debug(f"Response length: {len(response.content)} chars")
logger.debug(f"Response preview: {response.content[:200]}...")
return response.content
except Exception as e:
logger.error(f"AI call failed: {e}")
raise Exception(f"AI call failed: {e}")
def _getModelCapabilitiesForContent(self, prompt: str, documents: Optional[List[ChatDocument]], options: AiCallOptions) -> Dict[str, int]:
"""
Get model capabilities for content processing, including appropriate size limits for chunking.
"""
# Estimate total content size
prompt_size = len(prompt.encode('utf-8'))
document_size = 0
if documents:
# Rough estimate of document content size
for doc in documents:
document_size += doc.fileSize or 0
total_size = prompt_size + document_size
# Use AiObjects to select the best model for this content size
# We'll simulate the model selection by checking available models
from modules.interfaces.interfaceAiObjects import aiModels
# Find the best model for this content size and operation
best_model = None
best_context_length = 0
for model_name, model_info in aiModels.items():
context_length = model_info.get("contextLength", 0)
# Skip models with no context length or too small for content
if context_length == 0:
continue
# Check if model supports the operation type
capabilities = model_info.get("capabilities", [])
if options.operationType == OperationType.IMAGE_ANALYSIS and "image_analysis" not in capabilities:
continue
elif options.operationType == OperationType.IMAGE_GENERATION and "image_generation" not in capabilities:
continue
elif options.operationType == OperationType.WEB_RESEARCH and "web_search" not in capabilities:
continue
elif "text_generation" not in capabilities:
continue
# Prefer models that can handle the content without chunking, but allow chunking if needed
if context_length >= total_size * 0.8: # 80% of content size
if context_length > best_context_length:
best_model = model_info
best_context_length = context_length
elif best_model is None: # Fallback to largest available model
if context_length > best_context_length:
best_model = model_info
best_context_length = context_length
# Fallback to a reasonable default if no model found
if best_model is None:
best_model = {
"contextLength": 128000, # GPT-4o default
"llmName": "gpt-4o"
}
# Calculate appropriate sizes
# Convert tokens to bytes (rough estimate: 1 token ≈ 4 characters)
context_length_bytes = int(best_model["contextLength"] * 4)
max_context_bytes = int(context_length_bytes * 0.9) # 90% of context length
text_chunk_size = int(max_context_bytes * 0.7) # 70% of max context for text chunks
image_chunk_size = int(max_context_bytes * 0.8) # 80% of max context for image chunks
logger.debug(f"Selected model: {best_model.get('llmName', 'unknown')} with context length: {best_model['contextLength']}")
logger.debug(f"Content size: {total_size} bytes, Max context: {max_context_bytes} bytes")
logger.debug(f"Text chunk size: {text_chunk_size} bytes, Image chunk size: {image_chunk_size} bytes")
return {
"maxContextBytes": max_context_bytes,
"textChunkSize": text_chunk_size,
"imageChunkSize": image_chunk_size
}
def _getModelsForOperation(self, operation_type: str, options: AiCallOptions) -> List[ModelCapabilities]:
"""
Get models capable of handling the specific operation with capability filtering.
"""
# For now, return a default model - this will be enhanced with actual model registry
default_model = ModelCapabilities(
name="default",
maxTokens=4000,
capabilities=["text", "reasoning"] if operation_type == "planning" else ["text"],
costPerToken=0.001,
processingTime=1.0,
isAvailable=True
)
return [default_model]
def _buildPromptWithPlaceholders(self, prompt: str, placeholders: Optional[Dict[str, str]]) -> str:
"""
Build full prompt by replacing placeholders with their content.
Uses the new {{KEY:placeholder}} format.
"""
if not placeholders:
return prompt
full_prompt = prompt
for placeholder, content in placeholders.items():
# Replace both old format {{placeholder}} and new format {{KEY:placeholder}}
full_prompt = full_prompt.replace(f"{{{{{placeholder}}}}}", content)
full_prompt = full_prompt.replace(f"{{{{KEY:{placeholder}}}}}", content)
return full_prompt
def _exceedsTokenLimit(self, text: str, model: ModelCapabilities, safety_margin: float) -> bool:
"""
Check if text exceeds model token limit with safety margin.
"""
# Simple character-based estimation (4 chars per token)
estimated_tokens = len(text) // 4
max_tokens = int(model.maxTokens * (1 - safety_margin))
return estimated_tokens > max_tokens
def _reducePlanningPrompt(
self,
full_prompt: str,
placeholders: Optional[Dict[str, str]],
model: ModelCapabilities,
options: AiCallOptions
) -> str:
"""
Reduce planning prompt size by summarizing placeholders while preserving prompt structure.
"""
if not placeholders:
return self._reduceText(full_prompt, 0.7)
# Reduce placeholders while preserving prompt
reduced_placeholders = {}
for placeholder, content in placeholders.items():
if len(content) > 1000: # Only reduce long content
reduction_factor = 0.7
reduced_content = self._reduceText(content, reduction_factor)
reduced_placeholders[placeholder] = reduced_content
else:
reduced_placeholders[placeholder] = content
return self._buildPromptWithPlaceholders(full_prompt, reduced_placeholders)
def _reduceTextPrompt(
self,
prompt: str,
context: str,
model: ModelCapabilities,
options: AiCallOptions
) -> str:
"""
Reduce text prompt size using typeGroup-aware chunking and merging.
"""
max_size = int(model.maxTokens * (1 - options.safetyMargin))
if options.compressPrompt:
# Reduce both prompt and context
target_size = max_size
current_size = len(prompt) + len(context)
reduction_factor = (target_size * 0.7) / current_size
if reduction_factor < 1.0:
prompt = self._reduceText(prompt, reduction_factor)
context = self._reduceText(context, reduction_factor)
else:
# Only reduce context, preserve prompt integrity
max_context_size = max_size - len(prompt)
if len(context) > max_context_size:
reduction_factor = max_context_size / len(context)
context = self._reduceText(context, reduction_factor)
return prompt + "\n\n" + context if context else prompt
def _extractTextFromContentParts(self, extracted_content) -> str:
"""
Extract text content from ExtractionService ContentPart objects.
"""
if not extracted_content or not hasattr(extracted_content, 'parts'):
return ""
text_parts = []
for part in extracted_content.parts:
if hasattr(part, 'typeGroup') and part.typeGroup in ['text', 'table', 'structure']:
if hasattr(part, 'data') and part.data:
text_parts.append(part.data)
return "\n\n".join(text_parts)
def _reduceText(self, text: str, reduction_factor: float) -> str:
"""
Reduce text size by the specified factor.
"""
if reduction_factor >= 1.0:
return text
target_length = int(len(text) * reduction_factor)
return text[:target_length] + "... [reduced]"