https://api.turingcorp.net/v1
OpenAI-compatible chat completions API.
| Model ID | Status |
|---|---|
turingcorp/team-junior-v1 |
Preview |
turingcorp/team-senior-v1 |
Preview |
turingcorp/team-principal-v1 |
Preview |
from openai import OpenAI
client = OpenAI(
base_url="https://api.turingcorp.net/v1",
api_key="your-api-key"
)
response = client.chat.completions.create(
model="turingcorp/team-junior-v1",
messages=[{"role": "user", "content": "Hello!"}]
)Any OpenAI SDK or compatible client works without modification.
The API is currently in a small-scale preview phase. Access is by invitation only.
To request a preview license key, email iAsk@turingcorp.net with:
- Name — your name or organization
- Company — your company or affiliation
- Use Case — what you plan to test or evaluate
We review requests promptly and will respond with a key and usage limits.