Data privacy: what you shared and how to protect yourself
Time: 10:10 AM to 10:40 AM
What you shared this week
Here is a concrete breakdown of every piece of data that left your robot:What was NOT shared
Not everything left the Pi. Here is what stayed local:
Vosk is a privacy win — your raw voice audio never leaves the robot. Only the transcribed text gets sent to OpenAI.
Practical protections
1
Check data usage settings
API providers have settings to control whether your data is used for model training. Check your provider’s dashboard and disable training on your data where possible.
2
Never send personal information
Do not include names, addresses, medical data, passwords, or any personally identifying information in prompts. Treat every API call as a postcard — assume someone can read it.
3
Use local models for sensitive data
For private or sensitive use cases, run models locally so nothing ever leaves your machine. Tools like Ollama let you run LLMs on your own hardware.
4
Minimize image data
Use
detail: "low" for vision API calls (as we did). This sends less image data. Consider whether you need to send an image at all — sometimes a text description is enough.5
Review API terms of service
Read the actual terms. Understand what the provider can do with your data, how long they retain it, and where it is processed.
Local vs cloud: the tradeoff
For this camp, cloud APIs make sense — the Pi Zero 2W does not have enough power to run useful LLMs locally. But for real-world applications with sensitive data, local models are often required.
Enterprise and government context
Organizations handling sensitive data face strict requirements:- HIPAA (healthcare) — patient data cannot be sent to unauthorized third parties
- FERPA (education) — student records have strict sharing rules
- ITAR/EAR (defense) — export-controlled technical data cannot leave US jurisdiction
- GDPR (EU) — personal data of EU citizens has strict processing and retention rules
- FedRAMP (US government) — cloud services must be certified before government use
Metadata is data too
Even if your prompt content is encrypted, the pattern of API usage can reveal information:
- When you make calls (timestamps reveal your schedule)
- How often (frequency reveals intensity of work)
- How much data (volume reveals project scope)
- From where (IP addresses reveal location)
Discussion questions
After this section, take a 10-minute break (10:40 AM to 10:50 AM).

