// settings.module
Platform Settings
Governance, privacy, and compliance controls for teams operating under SOC 2, GDPR, and enterprise security review.
Zero-Data Retention Mode
When active, request payloads and prompt contents are processed strictly in stateless edge memory for token pruning and cost tracking. Raw data is never stored on disk, written to logs, or cached.
Payloads never written
Prompts excluded from logs
Processed in-flight only
No vector or KV caching
Generate a proxy key
Head to Organization and create a workspace-scoped API key for your environment.
Set the base URL
Point your SDK or HTTP client at https://api.synapseui.dev/v1. One line change.
Deploy as usual
Keep your existing models, headers, and retry logic. Synapse applies guardrails in-flight.
Update your environment file, then instantiate the OpenAI client as normal. The proxy forwards traffic and applies cost guardrails.
OPENAI_API_KEY=sk_openai_...
SYNAPSE_PROXY_KEY=sk_proxy_prod_...
OPENAI_BASE_URL=https://api.synapseui.dev/v1from openai import OpenAI
import os
client = OpenAI(
api_key=os.environ["OPENAI_API_KEY"],
base_url=os.environ["OPENAI_BASE_URL"], # Synapse proxy endpoint
)
response = client.chat.completions.create(
model="gpt-4o",
messages=[{"role": "user", "content": "Hello, Synapse"}],
)Tier 01
Solo Developer
For independent engineers shipping a single production pipeline. Full firewall, pruning, and attribution.
- 1 workspace, 1 proxy key
- Up to 5M tokens / month
- Real-time pruning & guardrails
- 7-day audit retention
- Community Slack support
Tier 02
Team Governance
Multi-tenant workspaces, departmental attribution, and compliance-grade controls for engineering orgs.
- Unlimited workspaces & proxy keys
- Up to 100M tokens / month included
- SSO/SAML + audit log export
- Zero-Data Retention attestation
- Departmental cost attribution
- Priority engineer-led support
Embed slot
Stripe Pricing Table
<stripe-pricing-table />
Drop the Stripe Pricing Table web component here with your pricing-table-id and publishable-key to render live, PCI-compliant checkout.