Skip to main content

The official Python SDK for the Subconscious API

Project description

Subconscious

Subconscious SDK

The official Python SDK for the Subconscious API

PyPI version PyPI downloads docs python version license


Installation

pip install subconscious-python
# or
uv add subconscious-python
# or
poetry add subconscious-python

Note: The package name is subconscious-python but you import it as subconscious.

Quick Start

from subconscious import Subconscious

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

run = client.run(
    engine="tim-large",
    input={
        "instructions": "Search for the latest AI news and summarize the top 3 stories",
        "tools": [{"type": "platform", "id": "parallel_search"}],
    },
    options={"await_completion": True},
)

print(run.result.answer)

Get Your API Key

Create an API key in the Subconscious dashboard.

Usage

Run and Wait

The simplest way to use the SDK—create a run and wait for completion:

run = client.run(
    engine="tim-large",
    input={
        "instructions": "Analyze the latest trends in renewable energy",
        "tools": [{"type": "platform", "id": "parallel_search"}],
    },
    options={"await_completion": True},
)

print(run.result.answer)
print(run.result.reasoning)  # Structured reasoning nodes

Fire and Forget

Start a run without waiting, then check status later:

run = client.run(
    engine="tim-large",
    input={
        "instructions": "Generate a comprehensive report",
        "tools": [],
    },
)

print(f"Run started: {run.run_id}")

# Check status later
status = client.get(run.run_id)
print(status.status)  # 'queued' | 'running' | 'succeeded' | 'failed' | 'canceled' | 'timed_out'

Poll with Custom Options

run = client.run(
    engine="tim-large",
    input={
        "instructions": "Complex task",
        "tools": [{"type": "platform", "id": "parallel_search"}],
    },
)

# Wait with custom polling options
result = client.wait(
    run.run_id,
    options={
        "interval_ms": 2000,  # Poll every 2 seconds
        "max_attempts": 60,   # Give up after 60 attempts
    },
)

Streaming (Text Deltas)

Stream text as it's generated:

for event in client.stream(
    engine="tim-large",
    input={
        "instructions": "Write a short essay about space exploration",
        "tools": [{"type": "platform", "id": "parallel_search"}],
    },
):
    if event.type == "delta":
        print(event.content, end="", flush=True)
    elif event.type == "done":
        print(f"\n\nRun completed: {event.run_id}")
    elif event.type == "error":
        print(f"Error: {event.message}")

Note: Rich streaming events (reasoning steps, tool calls) are coming soon. Currently, the stream provides text deltas as they're generated.

Tools

# Platform tools (hosted by Subconscious)
parallel_search = {
    "type": "platform",
    "id": "parallel_search",
}

# Function tools (your own functions)
custom_function = {
    "type": "function",
    "name": "get_weather",
    "description": "Get current weather for a location",
    "parameters": {
        "type": "object",
        "properties": {
            "location": {"type": "string"},
        },
        "required": ["location"],
    },
    "url": "https://api.example.com/weather",
    "method": "GET",
    "timeout": 30,
}

# MCP tools
mcp_tool = {
    "type": "mcp",
    "url": "https://mcp.example.com",
    "allow": ["read", "write"],
}

Error Handling

from subconscious import (
    Subconscious,
    SubconsciousError,
    AuthenticationError,
    RateLimitError,
)

try:
    run = client.run(...)
except AuthenticationError:
    print("Invalid API key")
except RateLimitError:
    print("Rate limited, retry later")
except SubconsciousError as e:
    print(f"API error: {e.code} - {e}")

Cancellation

# Cancel a running run
client.cancel(run.run_id)

API Reference

Subconscious

The main client class.

Constructor Options

Option Type Required Default
api_key str Yes -
base_url str No https://api.subconscious.dev/v1

Methods

Method Description
run(engine, input, options) Create a new run
stream(engine, input) Stream text deltas
get(run_id) Get run status
wait(run_id, options) Poll until completion
cancel(run_id) Cancel a running run

Engines

Engine Type Availability Description
tim-small-preview Unified Available Fast and tuned for search tasks
tim-large Compound Available Generalized reasoning engine backed by the power of OpenAI
timini Compound Coming soon Generalized reasoning engine backed by the power of Google Gemini

Run Status

Status Description
queued Waiting to start
running Currently executing
succeeded Completed successfully
failed Encountered an error
canceled Manually canceled
timed_out Exceeded time limit

Requirements

  • Python ≥ 3.8
  • requests

Contributing

Contributions are welcome! Please feel free to submit a pull request.

License

ISC

Support

For support and questions:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

subconscious_sdk-0.1.1.tar.gz (11.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

subconscious_sdk-0.1.1-py3-none-any.whl (10.7 kB view details)

Uploaded Python 3

File details

Details for the file subconscious_sdk-0.1.1.tar.gz.

File metadata

  • Download URL: subconscious_sdk-0.1.1.tar.gz
  • Upload date:
  • Size: 11.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for subconscious_sdk-0.1.1.tar.gz
Algorithm Hash digest
SHA256 c2ef7e913ff4c992baf4395b67784f8c190bc1a4b5dedf41fcc4535c9319552e
MD5 146cbf859b97885688adc772794aea61
BLAKE2b-256 27390497c3c7b874a5d02592f2c288e876bd8dae4337a6293a890c38d6903d76

See more details on using hashes here.

Provenance

The following attestation bundles were made for subconscious_sdk-0.1.1.tar.gz:

Publisher: publish.yml on subconscious-systems/subconscious-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file subconscious_sdk-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for subconscious_sdk-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 783e528b206b3c11b2c408460d3fd8accb5f5d7d8dc923a8a90d25c7245c80c0
MD5 566d3100ddfa048f818e0bac33abe07e
BLAKE2b-256 132ccec9a7fe05a667763118db434254904909e751d822a2c6806120de865f5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for subconscious_sdk-0.1.1-py3-none-any.whl:

Publisher: publish.yml on subconscious-systems/subconscious-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page