Earn $100 for building an AI Agent with Livepeer!
February 2nd, 2025

TLDR: Create an Eliza Agent and change “modelProvider”: “livepeer” in character file, then fill in the form at the bottom to earn $100!


Video Version Here

INTRODUCTION

Do you want to learn how to build your own AI Agent with the leading AI framework?

Do you want to earn free crypto for following this tutorial?

In the next 10 minutes you are going to learn how to launch your own Eliza AI Agent from scratch with no programming skills that can post on X, Discord, Telegram, Farcaster and more.

Follow the steps in this tutorial and fill in the Tutorial Reward form at the end to get your FREE Livepeer tokens! (Ticker: LPT)

**Step One — Set Up Virtual Machine (30s — 1 min)**SKIP TO STEP TWO if you already have a Linux or Mac machine

  1. Visit DigitalOcean.com (Or your choose favorite hosting site)

  2. Purchase a “Basic Droplet” server — Configure with Ubuntu 24 and minimum 8GB RAM

Make sure to select a 8GB Ram server (minimum)
Make sure to select a 8GB Ram server (minimum)
Use Ubuntu 24
Use Ubuntu 24
Create a root password
Create a root password

3. Log into your virtual machine using your IP address, username (root) and password. We use MobaXterm for our terminal. Follow the rest in the as terminal commands.

Log into your virtural machine (SSH)
Log into your virtural machine (SSH)

Step Two — Install Node.js (1–2 min)

  1. **Copy and paste the following commands into the terminal. Or visit the official NVM github repo to install nvm.**Having issues? Try the common issues section in the Eliza Docs
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash 
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
Example output
Example output

2. Install Node.js (Version 23.3.0)

nvm install 23.3.0
Example output
Example output

3. Install Pnpm

npm install -g pnpm@latest-10
Example output
Example output

Step Three — Set Up Agent (4–6 min)

  1. Clone the Eliza Github Repo
git clone https://github.com/elizaOS/eliza.git
Example output
Example output

2. Install and Build Eliza

Change directory into the Eliza folder

cd eliza
Example output
Example output

Checkout “main” branch

git checkout main
Example Output
Example Output

Build the software

pnpm install --no-frozen-lockfile
Example output
Example output
pnpm build
Example output
Example output

3. Copy the .env file

Let’s copy the .env file so our agent can read any configurations

cp .env.example .env
.env file location
.env file location

For this tutorial we do not need to modify the .env file, but if you want to make changes, such as using a different Livepeer gateway or different inference models, change these settings:

# Livepeer configuration
LIVEPEER_GATEWAY_URL=https://dream-gateway.livepeer.cloud           # Free inference gateways and docs: https://livepeer-eliza.com/
LIVEPEER_IMAGE_MODEL=           # Default: ByteDance/SDXL-Lightning
SMALL_LIVEPEER_MODEL=           # Default: meta-llama/Meta-Llama-3.1-8B-Instruct
MEDIUM_LIVEPEER_MODEL=          # Default: meta-llama/Meta-Llama-3.1-8B-Instruct
LARGE_LIVEPEER_MODEL=           # Default: meta-llama/Meta-Llama-3.1-8B-Instruct

4. Modify the Character File

The default characters are located in eliza/characters/

Character file location
Character file location

Pick a sample character such as c3po.character.json (Or build your own, or follow this video guide) and change the modelProvider value to “livepeer”

"modelProvider": "livepeer",
Example configuration
Example configuration

That’s it! Technically you now have a Eliza Agent that runs on Livepeer! But it doesn’t really interact with anyone yet. So let’s connect it to a X account to post for us.

We just need to update the file to include where to post (such as X… but we still call is Twitter in Eliza) and include our account details.

The final result should look like this:

  "clients": ["twitter"],
  "modelProvider": "livepeer",
  "settings": {
    "secrets": {
    "TWITTER_USERNAME": "user_name",
    "TWITTER_PASSWORD": "XXXXXXX",
    "TWITTER_EMAIL": "your@email.com",
    "TWITTER_TARGET_USERS": "Some_cool_handle,A_second_cool_handle"
    }
  },
Example configuration
Example configuration

Then we run the agent.

pnpm start --character="characters/c3po.character.json"
Example Agent Running
Example Agent Running

The Agent will post to X every 2 hours, comment on target user posts and engage with people on it’s own posts!

You can also follow the tutorials for Discord, Telegram integrations here.

5. Run 24/7 (optional)

To leave the agent running we can use a tool like Tmux to keep the program running in the background after we exit the virtual machine. Here are the tmux commands:

tmux                 # creates a new detached window
ctl + b and then d   # detaches from current window (program still runs)
tmux list-windows    # list all tmux windows
tmux attach -t 0     # attaches to the first detached window

Now for the REWARD!

If you have successfully followed these steps, fill in this form!

Link: https://forms.gle/spRXET9Y34ipnm5J7

We will collect submissions over the next 2 months (until March 25, 2025) and hand out the rewards to anyone who participates in building on Livepeer.

If you have any questions, please refer to our documentation site for updates, links to new tutorials and contact info: livepeer-eliza.com

Thank you for participating!

Titan — Livepeer Agent SPE Team

Subscribe to Agent SPE | Livepeer
Receive the latest updates directly to your inbox.
Mint this entry as an NFT to add it to your collection.
Verification
This entry has been permanently stored onchain and signed by its creator.
More from Agent SPE | Livepeer

Skeleton

Skeleton

Skeleton