reachys-brain / privacy.html
robertkeus's picture
Change headers to Mulish font
ef7f820 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - Reachy's Brain</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Mulish:wght@400;500;600;700;800&family=Nunito:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="page-wrapper">
<!-- Navigation -->
<nav class="nav">
<div class="nav-brand">
<a href="index.html" style="display: flex; align-items: center; gap: 0.75rem; text-decoration: none;">
<img src="logo.png" alt="Reachy's Brain" class="nav-logo-img">
<span class="nav-title">Reachy's Brain</span>
</a>
</div>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="index.html#features">Features</a>
<a href="terms.html">Terms</a>
</div>
</nav>
<!-- Privacy Policy Content -->
<section class="section legal-page">
<div class="legal-page-header">
<h1>Privacy Policy</h1>
<p class="legal-updated">Last updated: December 29, 2025</p>
</div>
<div class="legal-page-content">
<div class="legal-section">
<h2>Overview</h2>
<p>Reachy's Brain is committed to protecting your privacy. This Privacy Policy explains how we handle information when you use our Reachy Mini app and companion iOS application.</p>
</div>
<div class="legal-section">
<h2>Data Collection</h2>
<p>Reachy's Brain does not collect, store, or transmit any personal data to external servers operated by us. All data processing happens locally on your Reachy Mini robot and iOS device.</p>
<p>We do not:</p>
<ul>
<li>Collect personal information</li>
<li>Track your usage</li>
<li>Store conversation history on our servers</li>
<li>Share any data with third parties (except as noted below for OpenAI)</li>
</ul>
</div>
<div class="legal-section">
<h2>OpenAI API Usage</h2>
<p>Voice conversations, text-to-speech, and vision features are processed through OpenAI's API using your own API key. When using these features:</p>
<ul>
<li>Your conversations are sent to OpenAI for processing</li>
<li>Your API key is stored locally on Reachy Mini, not on our servers</li>
<li>We do not have access to your API key or conversation data</li>
<li>Your data is subject to <a href="https://openai.com/policies/privacy-policy" target="_blank" rel="noopener">OpenAI's Privacy Policy</a></li>
</ul>
</div>
<div class="legal-section">
<h2>Camera & Vision Features</h2>
<p>When using vision features:</p>
<ul>
<li>Images from Reachy's camera are sent to OpenAI for processing</li>
<li>Images are not stored by us</li>
<li>Image handling is governed by OpenAI's data policies</li>
<li>You control when the camera is active</li>
</ul>
</div>
<div class="legal-section">
<h2>Local Storage</h2>
<p>The following data is stored locally on your devices:</p>
<ul>
<li><strong>On Reachy Mini:</strong> Settings, API key (encrypted), recorded animations, conversation history, custom apps</li>
<li><strong>On iOS device:</strong> App settings, Reachy connection preferences, UI preferences</li>
</ul>
<p>This data remains on your devices and is not synced to any cloud services.</p>
</div>
<div class="legal-section">
<h2>Network Communication</h2>
<p>The iOS app communicates with Reachy over your local WiFi network. Network traffic includes:</p>
<ul>
<li><strong>Local (WiFi):</strong> Commands, status updates, audio streaming between your iPhone and Reachy</li>
<li><strong>Internet:</strong> Only OpenAI API calls for voice, TTS, and vision features</li>
</ul>
<p>No data is transmitted to our servers.</p>
</div>
<div class="legal-section">
<h2>Third-Party Services</h2>
<p>Reachy's Brain integrates with the following third-party services:</p>
<ul>
<li><strong>OpenAI:</strong> For voice conversations, text-to-speech, and vision</li>
</ul>
<p>Each service has its own privacy policy. We encourage you to review them.</p>
</div>
<div class="legal-section">
<h2>Children's Privacy</h2>
<p>Reachy's Brain is not directed at children under 13. We do not knowingly collect information from children. If you believe a child has provided information through the app, please contact us.</p>
</div>
<div class="legal-section">
<h2>Changes to This Policy</h2>
<p>We may update this Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page and updating the "Last updated" date.</p>
</div>
<div class="legal-section">
<h2>Contact</h2>
<p>If you have questions about this Privacy Policy, please open an issue on our <a href="https://github.com/robertkeus/reachy-ios-bridge" target="_blank" rel="noopener">GitHub repository</a>.</p>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="footer-content">
<div class="footer-brand">
<img src="logo.png" alt="Reachy's Brain" class="footer-logo-img">
<span>Reachy's Brain</span>
</div>
<div class="footer-links">
<a href="index.html">Home</a>
<a href="privacy.html">Privacy Policy</a>
<a href="terms.html">Terms of Service</a>
<a href="https://github.com/robertkeus/reachy-ios-bridge">GitHub</a>
</div>
<p class="footer-copyright">MIT License</p>
</div>
</footer>
</div>
</body>
</html>