SDK Functions

This section documents SDK setup and core Neocortex memory operations across TypeScript, Python, Go, Rust, Java, C++, and cURL.

Get API Access

Neocortex is currently in closed alpha.

  1. Request access: email founders@tinyhumans.aienvelope with your use case.

  2. Wait for approval.

  3. Receive your server API key.

Environment Setup

export TINYHUMANS_TOKEN="YOUR_API_KEY"
export TINYHUMANS_BASE_URL="https://api.tinyhumans.ai" # optional
circle-exclamation

Install by Language

npm install @tinyhumansai/neocortex
import { TinyHumanMemoryClient } from "@tinyhumansai/neocortex";
const client = new TinyHumanMemoryClient({ token: process.env.TINYHUMANS_TOKEN ?? "" });

Core Operations

Operation
TypeScript
Python
Go
Rust
Java
C++

Ingest / Insert

insertMemory

ingest_memory

IngestMemory

insert_memory

insertMemory

insert_memory

Recall Context

recallMemory

recall_memory

RecallMemory

recall_memory

recallMemory

recall_memory

Delete

deleteMemory

delete_memory

DeleteMemory

delete_memory

deleteMemory

delete_memory

Next:

Last updated