C++ SDK for TinyHumans/TinyHuman Neocortex memory APIs.
- C++17+
- CMake 3.14+
- libcurl
cd packages/sdk-cpp
make buildThis builds the SDK library and the example binary.
- Sign in to your TinyHumans account.
- Create a server API key in the TinyHumans dashboard.
- Export it before running examples:
export TINYHUMANS_TOKEN="your_api_key"
# optional custom API URL
export TINYHUMANS_BASE_URL="https://api.tinyhumans.ai"example/example_usage.cpp exercises every method exposed by this SDK:
insert_memoryrecall_memoryquery_memoryrecall_memoriesdelete_memory
Run it:
cd packages/sdk-cpp
./build/example_usageThis SDK currently exposes the core memory routes only (insert/query/recall/recall_memories/delete).