File size: 16,029 Bytes
94ecb74 |
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 |
"""
π οΈ Helper Utilities for CourseCrafter AI
Common utility functions and helpers used throughout the application.
"""
import re
import json
import hashlib
import asyncio
from typing import Any, Dict, List, Optional, Union, Callable
from datetime import datetime, timedelta
import logging
def generate_id(prefix: str = "", length: int = 8) -> str:
"""Generate a unique ID with optional prefix"""
timestamp = str(int(datetime.now().timestamp() * 1000))
hash_obj = hashlib.md5(timestamp.encode())
unique_id = hash_obj.hexdigest()[:length]
if prefix:
return f"{prefix}-{unique_id}"
return unique_id
def clean_text(text: str) -> str:
"""Clean and normalize text content"""
if not text:
return ""
# Remove extra whitespace
text = re.sub(r'\s+', ' ', text.strip())
# Remove control characters
text = re.sub(r'[\x00-\x08\x0b\x0c\x0e-\x1f\x7f]', '', text)
# Normalize quotes
text = text.replace('"', '"').replace('"', '"')
text = text.replace(''', "'").replace(''', "'")
return text
def truncate_text(text: str, max_length: int = 100, suffix: str = "...") -> str:
"""Truncate text to specified length with suffix"""
if not text or len(text) <= max_length:
return text
# Try to break at word boundary
truncated = text[:max_length - len(suffix)]
last_space = truncated.rfind(' ')
if last_space > max_length * 0.7: # If we can break at a reasonable word boundary
truncated = truncated[:last_space]
return truncated + suffix
def extract_keywords(text: str, max_keywords: int = 10) -> List[str]:
"""Extract keywords from text using simple frequency analysis"""
if not text:
return []
# Clean text and convert to lowercase
clean = re.sub(r'[^\w\s]', ' ', text.lower())
words = clean.split()
# Filter out common stop words
stop_words = {
'the', 'a', 'an', 'and', 'or', 'but', 'in', 'on', 'at', 'to', 'for',
'of', 'with', 'by', 'is', 'are', 'was', 'were', 'be', 'been', 'have',
'has', 'had', 'do', 'does', 'did', 'will', 'would', 'could', 'should',
'this', 'that', 'these', 'those', 'i', 'you', 'he', 'she', 'it', 'we',
'they', 'me', 'him', 'her', 'us', 'them', 'my', 'your', 'his', 'its',
'our', 'their', 'can', 'may', 'might', 'must', 'shall', 'from', 'up',
'out', 'down', 'off', 'over', 'under', 'again', 'further', 'then',
'once', 'here', 'there', 'when', 'where', 'why', 'how', 'all', 'any',
'both', 'each', 'few', 'more', 'most', 'other', 'some', 'such', 'no',
'nor', 'not', 'only', 'own', 'same', 'so', 'than', 'too', 'very'
}
# Filter words and count frequency
filtered_words = [word for word in words if len(word) > 2 and word not in stop_words]
word_freq = {}
for word in filtered_words:
word_freq[word] = word_freq.get(word, 0) + 1
# Sort by frequency and return top keywords
sorted_words = sorted(word_freq.items(), key=lambda x: x[1], reverse=True)
return [word for word, freq in sorted_words[:max_keywords]]
def format_duration(seconds: int) -> str:
"""Format duration in seconds to human-readable string"""
if seconds < 60:
return f"{seconds} seconds"
elif seconds < 3600:
minutes = seconds // 60
remaining_seconds = seconds % 60
if remaining_seconds == 0:
return f"{minutes} minutes"
return f"{minutes} minutes {remaining_seconds} seconds"
else:
hours = seconds // 3600
remaining_minutes = (seconds % 3600) // 60
if remaining_minutes == 0:
return f"{hours} hours"
return f"{hours} hours {remaining_minutes} minutes"
def estimate_reading_time(text: str, words_per_minute: int = 200) -> int:
"""Estimate reading time in minutes for given text"""
if not text:
return 0
word_count = len(text.split())
minutes = max(1, round(word_count / words_per_minute))
return minutes
def safe_json_loads(json_str: str, default: Any = None) -> Any:
"""Safely parse JSON string with fallback"""
try:
return json.loads(json_str)
except (json.JSONDecodeError, TypeError):
return default
def extract_json_from_response(response_text: str) -> str:
"""
Extract JSON from LLM response that might be wrapped in markdown code blocks.
Handles cases like:
- Plain JSON: {"key": "value"}
- Markdown wrapped: ```json\n{"key": "value"}\n```
- Mixed content: Some text\n```json\n{"key": "value"}\n```\nMore text
"""
if not response_text:
return ""
# First, try to find JSON in markdown code blocks
import re
# Pattern to match ```json ... ``` or ``` ... ``` blocks
json_block_patterns = [
r'```json\s*\n(.*?)\n```', # ```json ... ```
r'```\s*\n(.*?)\n```', # ``` ... ```
r'`(.*?)`', # Single backticks (less common)
]
for pattern in json_block_patterns:
matches = re.findall(pattern, response_text, re.DOTALL | re.IGNORECASE)
for match in matches:
# Try to parse each match as JSON
try:
json.loads(match.strip())
return match.strip() # Return the first valid JSON found
except json.JSONDecodeError:
continue
# If no markdown blocks found, try to extract JSON from the response
# Look for content between first { and last }
first_brace = response_text.find('{')
last_brace = response_text.rfind('}')
if first_brace != -1 and last_brace != -1 and last_brace > first_brace:
potential_json = response_text[first_brace:last_brace + 1]
try:
json.loads(potential_json)
return potential_json
except json.JSONDecodeError:
pass
# Look for content between first [ and last ] (for arrays)
first_bracket = response_text.find('[')
last_bracket = response_text.rfind(']')
if first_bracket != -1 and last_bracket != -1 and last_bracket > first_bracket:
potential_json = response_text[first_bracket:last_bracket + 1]
try:
json.loads(potential_json)
return potential_json
except json.JSONDecodeError:
pass
# If all else fails, return the original response
return response_text.strip()
def smart_json_loads(response_text: str, default: Any = None) -> Any:
"""
Smart JSON parser that handles markdown-wrapped JSON and other common LLM response formats.
This function:
1. Extracts JSON from markdown code blocks
2. Handles mixed content responses
3. Provides fallback for malformed JSON
4. Logs parsing attempts for debugging
"""
if not response_text:
return default
# Extract potential JSON from the response
json_text = extract_json_from_response(response_text)
# Try to parse the extracted JSON
try:
result = json.loads(json_text)
return result
except json.JSONDecodeError as e:
# Log the parsing failure for debugging
print(f"π JSON parsing failed: {e}")
print(f"π Original response length: {len(response_text)} chars")
print(f"π Extracted JSON length: {len(json_text)} chars")
print(f"π First 200 chars of original: {response_text[:200]}...")
print(f"π First 200 chars of extracted: {json_text[:200]}...")
return default
except Exception as e:
print(f"β Unexpected error in JSON parsing: {e}")
return default
def safe_json_dumps(obj: Any, default: Any = None) -> str:
"""Safely serialize object to JSON string"""
try:
return json.dumps(obj, default=str, ensure_ascii=False, indent=2)
except (TypeError, ValueError):
return json.dumps(default or {})
def merge_dicts(*dicts: Dict[str, Any]) -> Dict[str, Any]:
"""Merge multiple dictionaries, with later ones taking precedence"""
result = {}
for d in dicts:
if isinstance(d, dict):
result.update(d)
return result
def flatten_list(nested_list: List[Any]) -> List[Any]:
"""Flatten a nested list structure"""
result = []
for item in nested_list:
if isinstance(item, list):
result.extend(flatten_list(item))
else:
result.append(item)
return result
def chunk_list(lst: List[Any], chunk_size: int) -> List[List[Any]]:
"""Split a list into chunks of specified size"""
return [lst[i:i + chunk_size] for i in range(0, len(lst), chunk_size)]
def deduplicate_list(lst: List[Any], key_func: Optional[Callable] = None) -> List[Any]:
"""Remove duplicates from list while preserving order"""
if key_func is None:
seen = set()
result = []
for item in lst:
if item not in seen:
seen.add(item)
result.append(item)
return result
else:
seen = set()
result = []
for item in lst:
key = key_func(item)
if key not in seen:
seen.add(key)
result.append(item)
return result
def retry_async(max_attempts: int = 3, delay: float = 1.0, backoff: float = 2.0):
"""Decorator for retrying async functions with exponential backoff"""
def decorator(func: Callable) -> Callable:
async def wrapper(*args, **kwargs):
last_exception = None
current_delay = delay
for attempt in range(max_attempts):
try:
return await func(*args, **kwargs)
except Exception as e:
last_exception = e
if attempt < max_attempts - 1:
logging.warning(f"Attempt {attempt + 1} failed: {str(e)}. Retrying in {current_delay}s...")
await asyncio.sleep(current_delay)
current_delay *= backoff
else:
logging.error(f"All {max_attempts} attempts failed. Last error: {str(e)}")
raise last_exception
return wrapper
return decorator
def validate_email(email: str) -> bool:
"""Validate email address format"""
if not email or not isinstance(email, str):
return False
pattern = r'^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$'
return bool(re.match(pattern, email))
def sanitize_filename(filename: str, max_length: int = 100) -> str:
"""Sanitize filename for cross-platform compatibility"""
if not filename:
return "untitled"
# Remove or replace invalid characters
filename = re.sub(r'[<>:"/\\|?*]', '_', filename)
# Remove leading/trailing dots and spaces
filename = filename.strip('. ')
# Limit length
if len(filename) > max_length:
name, ext = filename.rsplit('.', 1) if '.' in filename else (filename, '')
max_name_length = max_length - len(ext) - 1 if ext else max_length
filename = name[:max_name_length] + ('.' + ext if ext else '')
# Ensure it's not empty
if not filename:
filename = "untitled"
return filename
def calculate_similarity(text1: str, text2: str) -> float:
"""Calculate simple text similarity using Jaccard similarity"""
if not text1 or not text2:
return 0.0
# Convert to sets of words
words1 = set(text1.lower().split())
words2 = set(text2.lower().split())
# Calculate Jaccard similarity
intersection = len(words1.intersection(words2))
union = len(words1.union(words2))
return intersection / union if union > 0 else 0.0
def format_file_size(size_bytes: int) -> str:
"""Format file size in bytes to human-readable string"""
if size_bytes == 0:
return "0 B"
size_names = ["B", "KB", "MB", "GB", "TB"]
i = 0
size = float(size_bytes)
while size >= 1024.0 and i < len(size_names) - 1:
size /= 1024.0
i += 1
return f"{size:.1f} {size_names[i]}"
def create_progress_callback(total_steps: int, callback_func: Optional[Callable] = None):
"""Create a progress tracking callback function"""
current_step = 0
def update_progress(step_name: str = "", increment: int = 1):
nonlocal current_step
current_step += increment
progress = min(current_step / total_steps, 1.0)
if callback_func:
callback_func(progress, step_name, current_step, total_steps)
return progress
return update_progress
def debounce(wait_time: float):
"""Decorator to debounce function calls"""
def decorator(func: Callable) -> Callable:
last_called = [0.0]
async def wrapper(*args, **kwargs):
now = asyncio.get_event_loop().time()
if now - last_called[0] >= wait_time:
last_called[0] = now
return await func(*args, **kwargs)
return wrapper
return decorator
class Timer:
"""Simple timer context manager"""
def __init__(self, name: str = "Operation"):
self.name = name
self.start_time = None
self.end_time = None
def __enter__(self):
self.start_time = datetime.now()
return self
def __exit__(self, exc_type, exc_val, exc_tb):
self.end_time = datetime.now()
duration = self.end_time - self.start_time
print(f"{self.name} completed in {duration.total_seconds():.2f} seconds")
@property
def duration(self) -> Optional[timedelta]:
if self.start_time and self.end_time:
return self.end_time - self.start_time
return None
class RateLimiter:
"""Simple rate limiter for API calls"""
def __init__(self, max_calls: int, time_window: float):
self.max_calls = max_calls
self.time_window = time_window
self.calls = []
async def acquire(self):
"""Wait if necessary to respect rate limits"""
now = datetime.now()
# Remove old calls outside the time window
self.calls = [call_time for call_time in self.calls
if (now - call_time).total_seconds() < self.time_window]
# If we're at the limit, wait
if len(self.calls) >= self.max_calls:
oldest_call = min(self.calls)
wait_time = self.time_window - (now - oldest_call).total_seconds()
if wait_time > 0:
await asyncio.sleep(wait_time)
# Record this call
self.calls.append(now)
def get_nested_value(data: Dict[str, Any], key_path: str, default: Any = None) -> Any:
"""Get nested dictionary value using dot notation"""
keys = key_path.split('.')
current = data
try:
for key in keys:
current = current[key]
return current
except (KeyError, TypeError):
return default
def set_nested_value(data: Dict[str, Any], key_path: str, value: Any) -> None:
"""Set nested dictionary value using dot notation"""
keys = key_path.split('.')
current = data
for key in keys[:-1]:
if key not in current or not isinstance(current[key], dict):
current[key] = {}
current = current[key]
current[keys[-1]] = value |