Skip to main content

November 2025

New Model: Qwen3-VL 30B

Added support for Qwen3-VL 30B, an advanced vision-language model for image and video understanding with exceptional multimodal capabilities. Model ID: qwen3-vl-30b

Models Sunset

The following models have been removed from the catalog:
  • Mistral Small 3.1 24B (mistral-small-3-1-24b)
  • Qwen 2.5 72B (qwen2-5-72b)
  • Kokoro (kokoro)

October 2025

Encrypted HTTP Body Protocol (EHBP)

Breaking Change: The API now supports Encrypted HTTP Body Protocol (EHBP) for end-to-end encryption of request and response payloads using attested encryption keys while keeping HTTP headers in the clear for routing purposes. EHBP provides the ability to cryptographically guarantees that user data can only be decrypted inside the TEE when the key is retrieved from an attestation report. Migration Required: Update all SDKs to version 0.10.0 or greater to maintain compatibility.
  • Python: pip install --upgrade tinfoil>=0.10.0
  • Node.js: npm install tinfoil@latest
  • Swift: Update package dependency to 0.10.0 or greater
  • Go: go get github.com/tinfoilsh/tinfoil-go@latest
See the EHBP documentation for technical details.

New Model: DeepSeek V3.1 Terminus

Added support for DeepSeek V3.1 Terminus, a hybrid reasoning model with enhanced agentic capabilities and improved language consistency. Model ID: deepseek-v31-terminus

September 2025

New Model: Qwen3 Coder 480B

Added support for Qwen3 Coder 480B, a powerful coding model with advanced agentic capabilities and understanding. Model ID: qwen3-coder-480b

Tinfoil Code Launch

Released Tinfoil Code, a privacy-focused fork of Qwen-Code coding agent running Qwen3 Coder 480b.
  • Install: npm install -g @tinfoil-code/qwen-code@latest
  • Run: tinfoil-qwen

August 2025

Admin API Launch

Introduced Admin API for programmatic user resource management.
  • Endpoints for API key management
  • Billing and usage statistics access

July 2025

SDK Updates - Simplified Client Initialization

All models can now be accessed through the unified orchestration server hosted at https://inference.tinfoil.sh The orchestrator automatically routes to the appropriate model enclave based on your API request This maintains a consistent endpoint across all models and matches OpenAI API standards. Breaking Change: The enclave and repo parameters are now deprecated in the client initialization and have been removed from client constructors. Before:
client = TinfoilAI(
    enclave="<enclave>.model.tinfoil.sh",
    repo="tinfoilsh/<config-repo>",
    api_key=os.getenv("TINFOIL_API_KEY")
)
After:
client = TinfoilAI(
    api_key=os.getenv("TINFOIL_API_KEY")
)
Migration Guide: Remove the enclave and repo parameters from your client initialization Keep only the API key parameter. The SDK now automatically routes requests through https://inference.tinfoil.sh.

June 2025


May 2025

New Audio Model: Whisper Large V3 Turbo

Added support for Whisper Large V3 Turbo for speech-to-text transcription. The chat now also offers voice inputs.
Model ID: whisper-large-v3-turbo

Document Processing API Launch

Added support for secure document processing:
  • Endpoint: https://doc-upload.model.tinfoil.sh
  • Supports PDF, DOCX, PPTX, XLSX, HTML, and images
  • Advanced understanding of document structure, layout, tables, and formulas

April 2025

New Model: Llama 3.3 70B

Added support for Llama 3.3 70B, an advanced conversational AI model. Model ID: llama3-3-70b
Need Help? Contact us at support@tinfoil.sh for assistance with migrations or if you have questions about these changes.