Skip to main content

Prompt data

Prompts and responses are never stored. Conversations are processed in memory, forwarded to the inference backend over HTTPS, and discarded after the response is returned. There is no prompt logging, no conversation history on the server, and no training on user data. Mako is a static fine-tune — the model weights do not change based on usage.

Account and billing data

The gateway does store minimal account metadata for credit tracking and authentication: No personal information is linked to wallet addresses. No email, no name, no IP address logging.

Tool data

When Mako executes tools on your behalf, those tool calls may interact with external services: These external calls are made server-side by the gateway. The third-party services receive the query parameters (addresses, search terms, URLs) but not your conversation context or wallet identity.

Privacy mode

Set PRIVACY_MODE=true to enable zero-retention mode:
  • Usage logs disabled — no per-request metadata is written to the database
  • Console logs redacted — tool arguments, URLs, and search queries are replaced with [redacted]
  • Privacy headers set — API responses include X-Mako-Privacy: zero-retention

Response headers

Every API response includes headers so your client can verify the gateway’s data posture:

Hosted gateway

When using the hosted gateway at gateway.deepmako.com:
  • Prompts are not stored and not logged
  • Prompts are forwarded to the inference backend over HTTPS/TLS
  • The inference backend processes the request and returns a response — no data is retained
  • Account metadata (wallet address, credit balance, usage totals) is stored for billing
  • API keys are SHA-256 hashed before storage

Verification

The gateway source code is available for inspection. Every privacy claim on this page is verifiable by reading the implementation.