Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.subconscious.dev/llms.txt

Use this file to discover all available pages before exploring further.

Subconscious is an AI lab that makes open models dramatically more capable with a novel inference runtime and complementary post-training. Our API is compatible with both the OpenAI Chat Completions and Anthropic Messages APIs, so you can start generating completions with three lines of code using whichever SDK you already use.

Quick Look

from openai import OpenAI

client = OpenAI(
    api_key="your-api-key",
    base_url="https://api.subconscious.dev/v1",
)

response = client.chat.completions.create(
    model="subconscious/tim-qwen3.6-27b",
    messages=[{"role": "user", "content": "What is the capital of France?"}],
)

print(response.choices[0].message.content)

Available Models

ModelInputCached InputOutput
subconscious/tim-qwen3.6-27b$0.50 / 1M$0.05 / 1M$3.50 / 1M
Coming soon: tim-qwen3.5-4b, tim-qwen3.5-9b, tim-qwen3.5-122b-a10b, tim-nemotron3-nano, tim-nemotron3-super, tim-kimi2.6

Get Started

Quickstart

Make your first API call in under 5 minutes

API Reference

Full endpoint documentation

Streaming

Stream responses token by token in real time

Structured Output

Get typed JSON responses with schema validation

Thinking Mode

Enable step-by-step reasoning for complex tasks

Pricing

Simple, transparent token-based pricing

For AI Tools