Agent Builder
Status: planned/not implemented.
LiveKit Agent Builder is a browser product surface. This Go repository does not include an equivalent browser-based builder.
Use code-first app composition instead. The practical replacement is:
- Define the agent instructions and tools in Go.
- Choose models through
app.AppConfigorRTP_AGENT_*environment variables. - Run the app through
interface/cli.RunAppduring development. - Add tests or parity cases for behavior that must stay stable.
This page exists so readers coming from the LiveKit Agents docs do not go looking for an unsupported UI.
Evidence:
- No builder package exists under
cmd,app,interface,core, ordocs/website/src. - The supported composition path is code-first in
cmd/main.goandapp/app.go.