Skip to content

Secure Model ServiceHIPAA/SOC2 Compliant Model Hosting

Enterprise-grade encrypted AI model deployment with powerful SDKs for Python and Node.js

Quick Start ​

Python ​

python
from secure_model_service import SecureModelClient

# Initialize client
client = SecureModelClient(
    api_key="your-api-key",
    client_id="your-client-id"
)

# Deploy a model
deployment = client.deploy(
    model_name="ZimaBlueAI/HuatuoGPT-o1-8B",
    tier="pro",
    use_gpu=True
)

# Generate text
response = client.generate(
    prompt="Explain how your encryption system ensures HIPAA compliance:",
    max_tokens=100
)

print(response.text)

Node.js ​

javascript
const { SecureModelClient } = require('secure-model-sdk');

// Initialize client
const client = new SecureModelClient({
  apiKey: 'your-api-key',
  clientId: 'your-client-id'
});

// Deploy a model
async function deployModel() {
  const deployment = await client.deploy({
    modelName: 'ZimaBlueAI/HuatuoGPT-o1-8B',
    tier: 'pro',
    useGpu: true
  });
  
  console.log(`Deployment ID: ${deployment.deploymentId}`);
  
  // Generate text
  const response = await client.generate({
    prompt: 'Explain how your encryption system ensures HIPAA compliance:',
    maxTokens: 100
  });
  
  console.log(response.text);
}

deployModel();

Command Line ​

bash
# Python CLI
secure-model deploy --model ZimaBlueAI/HuatuoGPT-o1-8B --tier pro --use-gpu

# Node.js CLI
secure-model deploy --model ZimaBlueAI/HuatuoGPT-o1-8B --tier pro --use-gpu

Released under the MIT License.