Spaces:
Running
Running
File size: 15,939 Bytes
b0b150b fb96efc b0b150b |
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 |
"""
MEXAR Core Engine - Knowledge Compilation Module
Builds Vector embeddings from parsed data for semantic retrieval.
"""
import os
import json
import logging
from typing import Dict, List, Any, Optional
from pathlib import Path
from utils.groq_client import get_groq_client, GroqClient
from fastembed import TextEmbedding
from core.database import SessionLocal
from models.agent import Agent
from models.chunk import DocumentChunk
# Configure logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
class KnowledgeCompiler:
"""
Compiles knowledge from parsed data into Vector embeddings.
Uses semantic similarity for retrieval-based reasoning.
"""
def __init__(self, groq_client: Optional[GroqClient] = None, data_dir: str = "data/agents"):
"""
Initialize the knowledge compiler.
Args:
groq_client: Optional pre-configured Groq client
data_dir: Directory to store agent data
"""
self.client = groq_client or get_groq_client()
self.data_dir = Path(data_dir)
self.data_dir.mkdir(parents=True, exist_ok=True)
# Compilation progress tracking
self.progress = {
"status": "idle",
"percentage": 0,
"current_step": "",
"details": {}
}
# Initialize embedding model (384 dim default)
try:
# Force cache to /tmp for HF Spaces or use env var
cache_dir = os.getenv("FASTEMBED_CACHE_PATH", "/tmp/.cache/fastembed")
self.embedding_model = TextEmbedding(
model_name="BAAI/bge-small-en-v1.5",
cache_dir=cache_dir
)
logger.info(f"FastEmbed model loaded (cache: {cache_dir})")
except Exception as e:
logger.warning(f"Failed to load embedding model: {e}")
self.embedding_model = None
def compile(
self,
agent_name: str,
parsed_data: List[Dict[str, Any]],
system_prompt: str,
prompt_analysis: Dict[str, Any]
) -> Dict[str, Any]:
"""
Main compilation function.
Args:
agent_name: Name of the agent being created
parsed_data: List of parsed file results from DataValidator
system_prompt: User's system prompt
prompt_analysis: Analysis from PromptAnalyzer
Returns:
Dict containing:
- domain_signature: Keywords for domain matching
- stats: Compilation statistics
"""
self._update_progress("starting", 0, "Initializing compilation...")
try:
# Step 1: Build text context (30%)
self._update_progress("building_context", 10, "Building text context...")
text_context = self._build_text_context(parsed_data)
self._update_progress("building_context", 30, f"Text context built: {len(text_context):,} characters")
# Step 2: Extract domain signature (50%)
self._update_progress("extracting_signature", 35, "Extracting domain signature...")
domain_signature = self._extract_domain_signature(parsed_data, prompt_analysis)
self._update_progress("extracting_signature", 50, f"Domain signature: {len(domain_signature)} keywords")
# Step 3: Calculate stats (60%)
self._update_progress("calculating_stats", 55, "Calculating statistics...")
stats = self._calculate_stats(text_context, parsed_data)
# Step 4: Save metadata (70%)
self._update_progress("saving", 65, "Saving agent metadata...")
self._save_agent(
agent_name=agent_name,
text_context=text_context,
domain_signature=domain_signature,
system_prompt=system_prompt,
prompt_analysis=prompt_analysis,
stats=stats
)
# Step 5: Save to Vector DB (95%)
if self.embedding_model:
self._update_progress("saving_vector", 75, "Saving to Vector Store...")
self._save_to_vector_db(agent_name, text_context)
self._update_progress("complete", 100, "Compilation complete!")
return {
"domain_signature": domain_signature,
"stats": stats,
"agent_path": str(self.data_dir / agent_name)
}
except Exception as e:
logger.error(f"Compilation failed: {e}")
self._update_progress("error", self.progress["percentage"], f"Error: {str(e)}")
raise
def _update_progress(self, status: str, percentage: int, step: str, details: Dict = None):
"""Update compilation progress."""
self.progress = {
"status": status,
"percentage": percentage,
"current_step": step,
"details": details or {}
}
logger.info(f"[{percentage}%] {step}")
def get_progress(self) -> Dict[str, Any]:
"""Get current compilation progress."""
return self.progress.copy()
def _build_text_context(self, parsed_data: List[Dict[str, Any]]) -> str:
"""
Build text context from parsed data.
Args:
parsed_data: Parsed file data
Returns:
Formatted text context
"""
context_parts = []
for i, file_data in enumerate(parsed_data):
file_name = file_data.get("file_name", file_data.get("source", f"Source_{i+1}"))
file_format = file_data.get("format", file_data.get("type", "unknown"))
context_parts.append(f"\n{'='*60}")
context_parts.append(f"SOURCE: {file_name} ({file_format.upper()})")
context_parts.append(f"{'='*60}\n")
# Handle structured data (CSV, JSON)
if file_data.get("data"):
for j, entry in enumerate(file_data["data"]):
if isinstance(entry, dict):
entry_lines = [f"[Entry {j+1}]"]
for key, value in entry.items():
if value is not None and str(value).strip():
entry_lines.append(f" {key}: {value}")
context_parts.append("\n".join(entry_lines))
else:
context_parts.append(f"[Entry {j+1}] {entry}")
# Handle unstructured text (PDF, DOCX, TXT)
elif file_data.get("text"):
context_parts.append(file_data["text"])
# Handle content field
elif file_data.get("content"):
context_parts.append(file_data["content"])
# Handle records field
elif file_data.get("records"):
for j, record in enumerate(file_data["records"]):
if record and record.strip():
context_parts.append(f"[Line {j+1}] {record}")
text_context = "\n".join(context_parts)
# Limit to prevent token overflow (approximately 128K tokens = 500K chars)
max_chars = 500000
if len(text_context) > max_chars:
logger.warning(f"Text context truncated from {len(text_context)} to {max_chars} characters")
text_context = text_context[:max_chars] + "\n\n[CONTEXT TRUNCATED DUE TO SIZE LIMITS]"
return text_context
def _extract_domain_signature(
self,
parsed_data: List[Dict[str, Any]],
prompt_analysis: Dict[str, Any]
) -> List[str]:
"""
Extract domain signature keywords for guardrail checking.
"""
# Start with analyzed keywords (highest priority)
domain_keywords = prompt_analysis.get("domain_keywords", [])
signature = list(domain_keywords)
# Add domain and sub-domains
domain = prompt_analysis.get("domain", "")
if domain and domain not in signature:
signature.insert(0, domain)
for sub_domain in prompt_analysis.get("sub_domains", []):
if sub_domain and sub_domain.lower() not in [s.lower() for s in signature]:
signature.append(sub_domain)
# Extract column headers from structured data
for file_data in parsed_data:
if file_data.get("data") and isinstance(file_data["data"], list):
if file_data["data"] and isinstance(file_data["data"][0], dict):
for key in file_data["data"][0].keys():
clean_key = key.lower().strip().replace("_", " ")
if clean_key and clean_key not in [s.lower() for s in signature]:
signature.append(clean_key)
return signature[:80] # Limit for efficiency
def _calculate_stats(
self,
text_context: str,
parsed_data: List[Dict[str, Any]]
) -> Dict[str, Any]:
"""Calculate compilation statistics."""
return {
"context_length": len(text_context),
"context_tokens": len(text_context) // 4, # Rough estimate
"source_files": len(parsed_data),
"total_entries": sum(
len(p.get("data", [])) or len(p.get("records", []))
for p in parsed_data
)
}
def _save_agent(
self,
agent_name: str,
text_context: str,
domain_signature: List[str],
system_prompt: str,
prompt_analysis: Dict[str, Any],
stats: Dict[str, Any]
):
"""Save agent artifacts to filesystem."""
agent_dir = self.data_dir / agent_name
agent_dir.mkdir(parents=True, exist_ok=True)
# Save text context (for backup/debugging)
with open(agent_dir / "context.txt", "w", encoding="utf-8") as f:
f.write(text_context)
# Save metadata
metadata = {
"agent_name": agent_name,
"system_prompt": system_prompt,
"prompt_analysis": prompt_analysis,
"domain_signature": domain_signature,
"stats": stats,
"created_at": self._get_timestamp()
}
with open(agent_dir / "metadata.json", "w", encoding="utf-8") as f:
json.dump(metadata, f, indent=2, ensure_ascii=False)
logger.info(f"Agent saved to: {agent_dir}")
def _get_timestamp(self) -> str:
"""Get current timestamp."""
from datetime import datetime
return datetime.now().isoformat()
def load_agent(self, agent_name: str) -> Dict[str, Any]:
"""
Load a previously compiled agent.
Args:
agent_name: Name of the agent to load
Returns:
Dict with agent artifacts
"""
agent_dir = self.data_dir / agent_name
if not agent_dir.exists():
raise FileNotFoundError(f"Agent '{agent_name}' not found")
# Load metadata
with open(agent_dir / "metadata.json", "r", encoding="utf-8") as f:
metadata = json.load(f)
return {
"metadata": metadata,
"domain_signature": metadata.get("domain_signature", []),
"system_prompt": metadata.get("system_prompt", ""),
"prompt_analysis": metadata.get("prompt_analysis", {})
}
def _save_to_vector_db(self, agent_name: str, context: str):
"""Chunk and save context to vector database."""
try:
chunks = self._chunk_text(context)
if not chunks:
logger.warning(f"No chunks generated for {agent_name}")
return
logger.info(f"Generating embeddings for {len(chunks)} chunks...")
# Generate embeddings with error handling
try:
embeddings = list(self.embedding_model.embed(chunks))
logger.info(f"Successfully generated {len(embeddings)} embeddings")
except Exception as embed_error:
logger.error(f"Embedding generation failed: {embed_error}")
# Don't fail the entire compilation if embeddings fail
return
with SessionLocal() as db:
agent = db.query(Agent).filter(Agent.name == agent_name).first()
if not agent:
logger.error(f"Agent {agent_name} not found in DB")
return
# Clear old chunks
try:
deleted_count = db.query(DocumentChunk).filter(DocumentChunk.agent_id == agent.id).delete()
logger.info(f"Deleted {deleted_count} old chunks for agent {agent_name}")
except Exception as delete_error:
logger.warning(f"Failed to delete old chunks: {delete_error}")
# Continue anyway
# Insert new chunks
try:
new_chunks = [
DocumentChunk(
agent_id=agent.id,
content=chunk,
embedding=embedding.tolist(),
source="context"
)
for chunk, embedding in zip(chunks, embeddings)
]
db.add_all(new_chunks)
# Update agent's chunk_count
agent.chunk_count = len(new_chunks)
db.commit()
logger.info(f"Saved {len(new_chunks)} chunks to vector store for {agent_name}")
except Exception as insert_error:
logger.error(f"Failed to insert chunks: {insert_error}")
db.rollback()
raise
except Exception as e:
logger.error(f"Vector save failed: {e}", exc_info=True)
# Don't raise - allow compilation to continue even if vector save fails
def _chunk_text(self, text: str, chunk_size: int = 1000, overlap: int = 100) -> List[str]:
"""Simple text chunker."""
chunks = []
if not text:
return []
start = 0
while start < len(text):
end = min(start + chunk_size, len(text))
chunks.append(text[start:end])
if end == len(text):
break
start += (chunk_size - overlap)
return chunks
def list_agents(self) -> List[Dict[str, Any]]:
"""List all compiled agents."""
agents = []
for agent_dir in self.data_dir.iterdir():
if agent_dir.is_dir():
metadata_path = agent_dir / "metadata.json"
if metadata_path.exists():
with open(metadata_path, "r", encoding="utf-8") as f:
metadata = json.load(f)
agents.append({
"name": agent_dir.name,
"domain": metadata.get("prompt_analysis", {}).get("domain", "unknown"),
"created_at": metadata.get("created_at"),
"stats": metadata.get("stats", {})
})
return agents
# Factory function
def create_knowledge_compiler(data_dir: str = "data/agents") -> KnowledgeCompiler:
"""Create a new KnowledgeCompiler instance."""
return KnowledgeCompiler(data_dir=data_dir)
|