⚡ Quickstart Guide¶
Get up and running with Turing Engine in under 30 seconds.
⚡ Choose Your Setup Path¶
Install pre-compiled C++20 AVX2 native wheels directly from GitHub Releases:
💬 1. Instant Terminal Chat¶
Chat directly in your terminal with real pretrained weights:
# Chat with SmolLM2 or DeepSeek-R1:
turing chat --model smollm2
turing chat --model deepseek-r1-1.5b
turing chat --model qwen3-coder-30b
🖥️ 2. Launching the Serving Server¶
Start serving a 70B model or MoE architecture with Subspace acceleration:
Test OpenAI Endpoint¶
curl http://localhost:8000/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-r1-7b",
"messages": [{"role": "user", "content": "Explain Subspace Pruning in two sentences."}]
}'