/ SDK

One WebSocket. The whole crowd.

Stream live affective tensors into your runtime in under five lines. Built for real-time inference, edge robotics, and headless agent loops.

// install
$ pip install emotioncrowd
// stream a pack
from emotioncrowd import Crowd
crowd = Crowd("JOY-024")
async for tensor in crowd.stream():
agent.feel(tensor)
// Unity C#
using EmotionCrowd;
var crowd = new Crowd("FEAR-02");
crowd.OnTensor += t => npc.Apply(t);
crowd.Start();

Unity / Unreal

C# and C++ bindings. Drop-in components for crowd AI and NPC affect.

ROS 2

Native nodes publishing affective tensors on /crowd/state at 60Hz.

Python / PyTorch

Async iterator API for training, fine-tuning, and online inference.