Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 1.02 KB

File metadata and controls

49 lines (33 loc) · 1.02 KB

API Reference

Endpoint

https://api.turingcorp.net/v1

OpenAI-compatible chat completions API.

Available Models

Model ID Status
turingcorp/team-junior-v1 Preview
turingcorp/team-senior-v1 Preview
turingcorp/team-principal-v1 Preview

Usage

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.


Preview License Key

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.