Token Kortlagning fyrir AI
Token kortlagning (einnig kallað "token replacement") leyfi AI tól til að vinnsla gögn án þess að sjá persónu gögnum:
- Afsláttur Persónu Gögn — "John" → "TOK_PERSON_1", "john@example.com" → "TOK_EMAIL_1"
- Sendu Tokens til AI — AI fær "TOK_PERSON_1 wants refund on TOK_PRODUCT_1"
- Fá Svar Frá AI — AI gefur svar með tokens
- Endurgret Gögn — Tokens → "John wants refund on Subscription"
GDPR Þjónustuvernd Verkflæði
const customerQuery = "Hi John Smith (john@example.com), I want to refund my subscription";
// Step 1: Map tokens
const tokenized = await anonym.tokenize(customerQuery, {
entities: ['PERSON', 'EMAIL'],
storage: 'secure-mapping'
});
// Result: "Hi TOK_PERSON_1 (TOK_EMAIL_1), I want to refund my subscription"
// Step 2: Send to LLM
const llmResponse = await chatgpt.ask(`Customer support query: ${tokenized.text}`);
// LLM doesn't see personal data
// Step 3: De-tokenize response
const finalResponse = await anonym.detokenize(llmResponse, tokenized.mapping);
// Result: "Hi John, I can help with your subscription refund..."
// Step 4: Send to customer
await supportTicket.reply(finalResponse);
Samkvæmni Bætti
Token kortlagning fyrir GDPR:
- Endalaust Persónu Gögn til AI — LLM endalaust sjá persónu gögnum
- Þjóðar GDPR grein 32 — Persónu gögn eru vernduð í gangi
- Endalaust Gögn Leifar — Gögn endalaust þarf geyma á netþjónum