Eliza is an open-source multi-agent framework from ai16z. It supports pluggable model providers: OpenAI, Anthropic, Google, and Livepeer. The Livepeer plugin (Documentation Index
Fetch the complete documentation index at: https://na-36-handover-docs-v2-into-docs-v2-dev-20260518.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
plugin-livepeer) routes all LLM inference through a Livepeer AI gateway, where requests execute on decentralised GPU infrastructure.
The plugin was built by the Agent SPE (approved April 2025 with 30,000 LPT) as part of the first production AI agent pipeline on Livepeer.
Minimal setup
modelProvider: "livepeer" field tells Eliza to load the Livepeer plugin and route all generate() calls through LIVEPEER_GATEWAY_URL. The model field accepts any Ollama-compatible model ID supported by the Livepeer LLM pipeline.
Plugin architecture
The Livepeer plugin implements Eliza’sIModelProvider interface. When Eliza calls provider.generate(), the plugin:
- Formats the messages as an OpenAI-compatible chat completion request
- POSTs to
{LIVEPEER_GATEWAY_URL}/llmwith the model ID and messages - Returns the response text to Eliza’s agent loop
Supported models
Any Ollama-compatible model on the Livepeer LLM pipeline works. Warm models respond immediately; cold models load on first request (30-90 seconds).| Model | Warm | VRAM |
|---|---|---|
meta-llama/Meta-Llama-3.1-8B-Instruct | Yes | 8 GB |
mistralai/Mistral-7B-Instruct-v0.3 | Check network | 8 GB |
google/gemma-2-9b-it | Check network | 10 GB |
Qwen/Qwen2.5-7B-Instruct | Check network | 8 GB |
Extending the agent
Client connectors: Add"slack", "discord", or "twitter" to the clients array. Configure credentials in .env. The Livepeer inference backend works with all Eliza client connectors.
Knowledge and RAG: Add entries to the knowledge array in the character file. Eliza’s built-in vector store indexes them for retrieval-augmented generation.
Multi-agent: Eliza supports running multiple agents in one process, each with different character files. Each agent can use a different modelProvider or the same Livepeer backend with different model IDs.
The AI agent on Livepeer tutorial walks through the complete setup from clone to running agent. The Eliza Livepeer plugin tutorial covers the plugin architecture in depth.