The WriftAI API is live at api.wrift.ai/v1.
Run inference on pre-deployed models with a single API call. No servers, no CUDA, no setup.
1curl "https://api.wrift.ai/v1/predictions" \2 -H "Authorization: Bearer $WRIFTAI_ACCESS_TOKEN" \3 -H "Content-Type: application/json" \4 -d '{5 "model": "owner/model_name",6 "input": {7 "prompt": "Summarize quantum computing."8 }9 }'