- Add Users table for display name resolution from AD authentication - Integrate DIFY AI service for report content generation - Create docx assembly service with image embedding from MinIO - Add REST API endpoints for report generation and download - Add WebSocket notifications for generation progress - Add frontend UI with progress modal and download functionality - Add integration tests for report generation flow Report sections (Traditional Chinese): - 事件摘要 (Summary) - 時間軸 (Timeline) - 參與人員 (Participants) - 處理過程 (Resolution Process) - 目前狀態 (Current Status) - 最終處置結果 (Final Resolution) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
35 lines
467 B
Plaintext
35 lines
467 B
Plaintext
# Web Framework
|
|
fastapi==0.109.0
|
|
uvicorn[standard]==0.27.0
|
|
python-multipart==0.0.6
|
|
|
|
# Database
|
|
sqlalchemy==2.0.25
|
|
psycopg2-binary==2.9.9
|
|
alembic==1.13.1
|
|
|
|
# Object Storage
|
|
minio==7.2.0
|
|
|
|
# Document Generation
|
|
python-docx==1.1.0
|
|
|
|
# File Type Detection
|
|
python-magic==0.4.27
|
|
|
|
# Security & Encryption
|
|
cryptography==42.0.2
|
|
|
|
# HTTP Client
|
|
httpx==0.26.0
|
|
|
|
# Environment Variables
|
|
python-dotenv==1.0.0
|
|
|
|
# Testing
|
|
pytest==7.4.4
|
|
pytest-asyncio==0.23.3
|
|
|
|
# Development
|
|
ruff==0.1.14
|