Skip to main content
Agno provides a beautiful UI for interacting with your agents, completely open source, free to use and build on top of. It’s a simple interface that allows you to chat with your agents, view their memory, knowledge, and more.
The AgentOS only uses data in your database. No data is sent to Agno.
Built with Next.js and TypeScript, the Open Source Agent UI was developed in response to community requests for a self-hosted alternative following the success of AgentOS.

Get Started with Agent UI

To clone the Agent UI, run the following command in your terminal:
Enter y to create a new project, install dependencies, then run the agent-ui using:
Open http://localhost:3000 to view the Agent UI, but remember to connect to your local agents.

You can also clone the repository manually
And run the agent-ui using

Connect your AgentOS

The Agent UI needs to connect to a AgentOS server, which you can run locally or on any cloud provider. Let’s start with a local AgentOS server. Create a file agentos.py
agentos.py
In another terminal, run the AgentOS server:
1

Setup your virtual environment

2

Install dependencies

3

Export your OpenAI key

4

Run the AgentOS

Make sure the module path in agent_os.serve() matches your filename (e.g., "agentos:app" for agentos.py).

View the AgentUI

  • Open http://localhost:3000 to view the Agent UI
  • Enter the localhost:7777 endpoint on the left sidebar and start chatting with your agents and teams!

Learn more

AgentOS Introduction

Learn about AgentOS

Building Agents

Build your own agents