Private Inference API

Our API is compatible with the OpenAI Chat Completions API format, making it easy to integrate with your existing applications while adding verifiable security.

All inference requests are processed in secure enclaves, ensuring complete privacy of your data.

Example Usage

curl -N https://models.default.tinfoil.sh/api/chat \
    -H "Content-Type: application/json" \
    -d '{
        "model": "llama3.2:1b",
        "messages": [
            {
                "role": "system",
                "content": "You are a helpful assistant that gives concise responses."
            },
            {
                "role": "user", 
                "content": "What is tin foil made of?"
            }
        ]
    }'

Available Models