HUMA Platform

Make your agents human-like in minutes.
Learn the basics of the HUMA platform.

javascript
123456789101112131415
import io from 'socket.io-client';

const socket = io('ws://api.huma.ai');

// Connect to your agent
socket.on('connect', () => {
  console.log('Connected to HUMA');

  // Send a context update event
  socket.emit('message', {
    type: 'context-update',
    name: 'user-message',
    context: {}
  });
});

HUMA

Start building

Documentation Index

Complete list of all documentation pages.