Merges ac-helper (PHP Activation Calendar) and brief-extractor (Python AI) into a single Docker app with React/TypeScript frontend. Features: - Brief upload → AI extraction → review → Activation Calendar import - Handsontable v17 spreadsheet with dependent dropdowns (148 categories) - AI natural language commands via Gemini (YOLO mode, voice input) - Azure AD MSAL SPA PKCE authentication, user roles (user/admin) - CSV Activation Calendar export - Real-time WebSocket job progress - Admin: user management, dropdown Excel upload - Multi-stage Dockerfile, docker-compose, nginx proxy instructions Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
18 lines
No EOL
379 B
Python
Executable file
18 lines
No EOL
379 B
Python
Executable file
"""
|
|
Job management module for Brief Extractor GUI
|
|
"""
|
|
|
|
from .models import Job, JobPhase, ProviderUpdate, JobSummary, ModelConfiguration, ModelInfo
|
|
from .manager import JobManager
|
|
from .storage import StorageManager
|
|
|
|
__all__ = [
|
|
'Job',
|
|
'JobPhase',
|
|
'ProviderUpdate',
|
|
'JobSummary',
|
|
'ModelConfiguration',
|
|
'ModelInfo',
|
|
'JobManager',
|
|
'StorageManager'
|
|
] |