1

Sign Up to Beyond Presence

Go to the Beyond Presence Dashboard and sign up with either your email or your Google account.

2

Create an API Key

Go to the “API Keys” tab in your account settings, create a new API key, and save it somewhere.

Create an API Key

Learn how to create an API key for using the Beyond Presence API.

3

Select an Avatar

Go to the Default Avatars page or to the “Avatars” tab in the Beyond Presence Dashboard and select an avatar you want to use in your application.

Default Avatars

Explore our stock avatars that can be used immediately.

4

Create a LiveKit Agent with Beyond Presence Avatar

Beyond Presence supports several ways of technical integration, but if you are familiar with Python, we recommend to use our LiveKit Agents Integration:

  1. Sign up to LiveKit at https://cloud.livekit.io/
  2. Install the livekit-agents Python package and our plugin livekit-plugins-bey
    pip install livekit-agents livekit-agents-bey
    
  3. Set your Beyond Presence and LiveKit secrets as environment variables
    export BEY_API_KEY="..."
    export LIVEKIT_API_KEY="..."
    export LIVEKIT_API_SECRET="..."
    export LIVEKIT_URL="..."
    
  4. Clone the LiveKit Agents repository and run the integration example
    git clone https://github.com/livekit/agents.git
    cd agents
    python examples/avatar/bey/agent_worker.py
    

LiveKit Agents Integration

Learn more about how the Beyond Presence LiveKit Agents integration works.

Next Steps