groq-data-handling
Installation
SKILL.md
Groq Data Handling
Overview
Manage data flowing through Groq's inference API. Covers prompt sanitization before sending to Groq, response filtering after receiving, PII redaction, conversation audit logging, and token usage tracking. Key fact: Groq does not use API data for model training (Groq Privacy Policy).
Groq Data Policy
- Groq does not train on API request/response data
- Prompts and completions are processed and discarded
- Groq may temporarily log requests for abuse prevention
- For enterprise: contact Groq for DPA and SOC 2 compliance details
Instructions
Step 1: Prompt Sanitization Layer
import Groq from "groq-sdk";
const groq = new Groq();
interface RedactionRule {
Related skills