Proposed conversational flow for Northern Lights
Copilot interprets intent and identifies required tools
Routes to check_completion tool endpoint
Extract KVPs from Energy_Data_2025.xlsx using existing extraction logic
Validate against VSME Environmental section requirements
{
"section": "VSME Environmental",
"entity_name": "KPMG Norway AS",
"energy_data": {
"total_consumption_kwh": 1245000,
"renewable_percentage": 78.5,
"scope_1_emissions": 12500,
"scope_2_emissions": 8900
},
"completion_status": {
"required_fields": 12,
"completed_fields": 10,
"missing": ["water_usage", "waste_recycled"]
}
}
Invoke narrative generation with extracted KVPs
Generate VSME-compliant narrative using reasoning model
{
"narrative_text": "In fiscal year 2024, KPMG Norway AS demonstrated
continued commitment to sustainable energy practices. Total
energy consumption reached 1,245 MWh, with renewable sources
accounting for 78.5% of the total energy mix—an improvement
of 5.1 percentage points from the prior year.
Direct emissions (Scope 1) totaled 12,500 tCO2e, while
indirect emissions from purchased energy (Scope 2) were
8,900 tCO2e. The organization continues to prioritize
energy efficiency initiatives and renewable energy
procurement.",
"confidence_score": 0.94,
"vsme_compliance": "Aligned with E1-5 disclosure requirements"
}
Analyst must explicitly approve before writing to Workiva
Retrieve Workiva OAuth credentials securely
Execute PUT request to VSME Environmental section
Update target container with approved narrative
PUT /platform/v1/spreadsheets/{id}/sheets/{id}/data
Authorization: Bearer {access_token}
{
"cells": [
{
"row": 15,
"column": "B",
"value": "In fiscal year 2024, KPMG Norway AS..."
}
]
}
Every step is logged to Azure Log Analytics: tool invocations, AI prompts/responses, analyst decisions, and Workiva write operations. This ensures complete auditability and supports GDPR/EU AI Act compliance requirements.
Project Northern Lights Data Flow v2.0 | Danta Labs for KPMG Lighthouse
Copilot-Driven | Human-in-the-Loop | Full Audit Trail