Skip to main content

Developer quickstart

Make your first API request in minutes. Learn the basics of the Subconscious platform.

Get started

Build your first agent in under 5 minutes
from subconscious import Subconscious

client = Subconscious(api_key="your-api-key")

run = client.run(
engine="tim-gpt",
input={"instructions": "Summarize the latest AI news"},
options={"await_completion": True},
)

print(run.result.answer)

Engines

Our agent engines combine a language model with a custom inference runtime. We offer Unified Engines (co-designed model and runtime) and Compound Engines (frontier models with smart context management). View all engines →

Start building