C# SDK for TinyHumans/TinyHuman Neocortex memory APIs.
- .NET 8 SDK
cd packages/sdk-csharp
dotnet build- 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/TinyHumans.Sdk.Example/Program.cs exercises every method exposed by this SDK:
InsertMemoryAsyncRecallMemoryAsyncQueryMemoryAsyncRecallMemoriesAsyncDeleteMemoryAsync
Run it:
cd packages/sdk-csharp
dotnet run --project example/TinyHumans.Sdk.ExampleThis SDK currently exposes the core memory routes only (insert/query/recall/recallMemories/delete).