diff --git a/agent-os/agent-ui/overview.mdx b/agent-os/agent-ui/overview.mdx index c094a6b2..d239acae 100644 --- a/agent-os/agent-ui/overview.mdx +++ b/agent-os/agent-ui/overview.mdx @@ -2,6 +2,7 @@ title: AgentUI sidebarTitle: AgentUI description: An Open Source AgentUI for your AgentOS +keywords: [agent ui, agentui, agent interface, self-hosted ui, agno ui] --- @@ -18,7 +19,7 @@ Agno provides a beautiful UI for interacting with your agents, completely open s The AgentOS only uses data in your database. No data is sent to Agno. -The Open Source Agent UI is built with Next.js and TypeScript. After the success of the [Agent AgentOS](/agent-os/introduction), the community asked for a self-hosted alternative and we delivered! +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](https://github.com/agent-os/introduction). ## Get Started with Agent UI @@ -98,7 +99,7 @@ web_agent = Agent( finance_agent = Agent( name="Finance Agent", model=OpenAIChat(id="gpt-5-mini"), - tools=[YFinanceTools(stock_price=True, analyst_recommendations=True, company_info=True, company_news=True)], + tools=[YFinanceTools()], instructions=["Always use tables to display data"], db=SqliteDb(db_file=agent_storage), add_datetime_to_context=True, @@ -167,7 +168,7 @@ In another terminal, run the AgentOS server: -Make sure the `serve_agentos_app()` points to the file containing your `AgentOS` app. +Make sure the module path in `agent_os.serve()` matches your filename (e.g., `"agentos:app"` for `agentos.py`). ## View the AgentUI @@ -181,3 +182,14 @@ In another terminal, run the AgentOS server: className="w-full aspect-video" src="/videos/agent-ui-demo.mp4" > + +## Learn more + + + + Learn about AgentOS + + + Build your own agents + + diff --git a/images/agent-ui-homepage.png b/images/agent-ui-homepage.png index 66f39bab..5d09cec9 100644 Binary files a/images/agent-ui-homepage.png and b/images/agent-ui-homepage.png differ diff --git a/videos/agent-ui-demo.mp4 b/videos/agent-ui-demo.mp4 index 2d4f6bbc..b26b6f4a 100644 Binary files a/videos/agent-ui-demo.mp4 and b/videos/agent-ui-demo.mp4 differ