Enhanced the VEO3 usage report system to support all AI tool types: - Added support for 6 tool types: VEO3, TEXT2IMAGE, TEXT2VOICE, SPEECH2SPEECH, DOCUMENT_TRANSLATION, VIDEOQUERY - Updated Python report generator (veo3_report.py) with dynamic tool detection - Updated PHP report page (report.php) with tool usage breakdown section - Changed all "Prompts" references to "Requests" for clarity - Updated refresh button to fetch only last 12 weeks (84 days) for better performance - Made system dynamic to handle unknown tool types automatically - Renamed report titles from "VEO3 Usage Report" to "AI Tools Usage Report" Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
20 lines
678 B
Text
20 lines
678 B
Text
# VEO3 Report Configuration
|
|
|
|
# Webhook URL (default is provided, override if needed)
|
|
WEBHOOK_URL=https://hook.us1.make.celonis.com/u8i4yq6rydu8u8g9bfhk0xbajsyckrmj
|
|
|
|
# SMTP Configuration (Mailgun SMTP)
|
|
SMTP_SERVER=smtp.mailgun.org
|
|
SMTP_PORT=587
|
|
SMTP_USER=your-mailgun-smtp-user@your-domain.com
|
|
SMTP_PASSWORD=your-mailgun-smtp-password
|
|
SENDER_EMAIL=reports@your-domain.com
|
|
|
|
# Email Recipients (comma-separated)
|
|
REPORT_RECIPIENTS=user1@example.com,user2@example.com
|
|
|
|
# SSO Configuration (Microsoft Azure AD / MSAL)
|
|
# Set SSO_ENABLED=true for production, false for local development without SSO
|
|
SSO_ENABLED=true
|
|
SSO_TENANT_ID=your-azure-tenant-id
|
|
SSO_CLIENT_ID=your-azure-client-id
|