GENAI-LEADER · Topic group 4 of 4 · 15.0%
Business Strategy for Generative AI
The smallest section, covering how you actually get from idea to deployed system without creating a security or compliance problem. Light on weight, heavy on the things that end projects.
From business need to deployed solution
Matching need to solution type starts with naming which of the four shapes the work is: create, summarize, discover, or automate. That single question eliminates most wrong answers, because it establishes what "working" would look like.
The factors that genuinely constrain what is buildable:
- Business requirements: accuracy needed, latency tolerated, volume expected, and what happens when it is wrong
- Technical constraints: where the data lives, what it may be used for, what it can integrate with, and what skills you have
The second list is where proposals die, and usually not for technical reasons. "The data exists but we cannot use it for this purpose" ends more projects than any model limitation.
Integration steps, in the order that actually works:
- Identify a use case with a measurable baseline. You need to know what today costs
- Prepare and assess the data before building anything
- Prototype narrowly and evaluate honestly against that baseline
- Address security, privacy, and governance before rollout, not after
- Roll out with training and support, because prompt skill drives output quality
- Monitor, measure, and iterate against the baseline you established
Measuring impact is where most programs are weakest. Adoption metrics (licenses assigned, weekly users) are activity, not impact. The number that matters is whether the work got faster, cheaper, or better, which requires having measured it before you started. If nobody captured the baseline, you have made yourself unable to prove your own success.
Securing an AI system
Security across the lifecycle, not just at deployment. Each stage has its own exposure: training data can be poisoned or can leak; the model itself is intellectual property; the deployed endpoint can be abused; and the outputs can disclose things they should not.
A structured secure-AI framework exists to make that systematic rather than ad hoc. The value of adopting one is less the specific controls and more that it gives you a checklist somebody can be held to, and a common vocabulary with your security team. Committing to a framework means committing to assessment against it, which is the part that makes it real.
The platform controls worth knowing by function rather than by name:
- Identity and access management: who can invoke what. The first control, and the one most often too broad.
- Security posture monitoring: continuous checking for misconfiguration and threat, across the estate rather than per-project.
- Workload monitoring: what the running system is actually doing.
- Secure-by-design infrastructure: the protections you inherit rather than build.
The AI-specific threats to raise in any review: prompt injection, where instructions hidden in content the system reads change its behavior; data leakage, where the system reveals something in its context that the user should not see; and abuse, where a public-facing endpoint is used for something other than its purpose. The defense against the first is architectural, constrain what the system can do, so an injection has nothing dangerous to reach.
Responsible AI as an operational requirement
Transparency means people can tell they are interacting with an AI system and have some sense of how it reached its output. In a growing number of jurisdictions this is law rather than courtesy, and it is cheaper to build in than to retrofit.
Privacy has two specific techniques worth being able to name:
- Anonymisation: removing identifying information irreversibly
- Pseudonymisation: replacing identifiers with tokens that could be reversed with a separate key
The difference matters legally. Pseudonymised data is generally still personal data with all the obligations that follow; anonymised data may not be. Teams routinely claim the first while doing the second.
The causal chain from data to fairness is the point of this section, and it is worth stating as a chain because that is how you intervene:
Data quality and representativeness → what the model learns → how it treats different groups → whether the outcome is fair
Intervene at the front. Bias discovered at the output stage is expensive to fix and has usually already affected someone.
Accountability and explainability are the two that turn principles into artifacts. Accountability means a named person answers for the system's decisions, never "the model decided". Explainability means you can say why a particular output occurred, in terms the affected person can understand and challenge.
Both have to be designed in. You cannot add explainability to a system that retained nothing, and you cannot assign accountability to a deployment nobody owns.
Written against the documentation pages below, checked 2026-07-25. Anthropic publishes that its exam guides may change without notice, and the platform itself moves faster than that, so verify anything version-specific before you sit.