skillfed

agent-framework-devui

Debug UI for Microsoft Agent Framework with OpenAI-compatible API server.

agent-framework-devui v1.0.0b260813 713.6K downloads/30d#5,252 on PyPI12,803
Permissive license Active released

What it is and what it does

DevUI is a sample application interface that provides both a web UI and an OpenAI-compatible REST API for running agents and workflows. It supports directory-based discovery of agent definitions, in-memory entity registration, and includes a curated gallery of sample entities to help new users get started. The UI runs on localhost with token-based authentication and can be launched either programmatically via the serve() function or from the command line with the devui CLI tool.

The package is built on fastapi and uvicorn and integrates with opentelemetry-sdk for trace visibility. It is explicitly positioned as a development and testing tool, not a production deployment platform. It supports multi-turn conversations, OpenAI proxy mode for direct model testing, and automatic cleanup of resources like MCP tool connections.

Use it for:

  • Test and debug agents locally during development without building a custom UI.
  • Discover and run pre-built agent examples to learn the framework.
  • Expose agents via an OpenAI-compatible API for integration testing or prototyping.
  • View OpenTelemetry traces of agent execution to troubleshoot behavior.
  • Run multi-turn conversations with agents while managing message history automatically.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Provides a lightweight web UI and OpenAI-compatible API server for discovering, registering, and running agents and workflows built with the Microsoft Agent Framework.

Yes, if you are developing or prototyping agents and want a quick, low-friction way to test them locally. The permissive MIT license, low install friction, and active maintenance make it a practical development tool. However, do not use it for production—it is explicitly a sample app, and the documentation recommends building your own custom interface for production deployments.

Install

agent-framework-devui on PyPI

pip

pip install agent-framework-devui

uv

uv add agent-framework-devui

poetry

poetry add agent-framework-devui

Installing agent-framework-devui

Before you install

Low install friction with a pure-Python wheel distribution. The package is actively maintained with a recent release and depends on established libraries (fastapi, uvicorn, opentelemetry-sdk, openai, agent-framework-core).

License in practice

Licensed under MIT (permissive), allowing use, modification, and distribution with minimal restrictions.

Quickstart

pip install agent-framework-devui --pre

from agent_framework_devui import serve
from agent_framework_core import Agent

agent = Agent(name="MyAgent")
serve(entities=[agent], auto_open=True)

Requires Python 3.10 or later. OpenAI API credentials must be configured for agent execution.

Verify before relying

  • Whether the sample entity gallery examples are comprehensive enough for typical development workflows.
  • Performance characteristics when running many agents or workflows concurrently through the UI.
  • Whether MCP tool connection cleanup is reliable across all shutdown scenarios.
  • Production readiness and scalability beyond the stated sample app scope.

Package facts

License not declared (permissive)
Python support supports the current Python release (>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 5 — agent-framework-core, openai, opentelemetry-sdk, fastapi, uvicorn
Maintenance actively maintained — 0 days since the last release
Last repo commit
First released
Downloads 713,559/month — #5,252 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: agent_framework_devui-1.0.0b260813-py3-none-any.whl

Development Status :: 4 - BetaIntended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14Typing :: Typed

Tags

agent framework debug uiagent testing interfaceworkflow runner web uiopenai compatible agent apiagent framework devuilocal agent development serveragent discovery and execution
agent-frameworkdevelopment-toolopenai-compatible

More Application Frameworks packages

fastapi

FastAPI is a Python web framework for building…

permissive · top 100 on PyPI

annotated-doc

Provides a way to document function parameters,…

permissive · top 100 on PyPI

textual

Textual is a Python framework for building…

permissive · top 100 on PyPI

typer

Typer builds command-line applications from…

permissive · top 1,000 on PyPI

mcp

Build and connect to Model Context Protocol…

permissive · top 1,000 on PyPI

Werkzeug

Werkzeug is a WSGI utility library providing…

permissive · top 1,000 on PyPI

agent-framework

Builds and orchestrates AI agents powered by…

permissive · top 5,000 on PyPI

agent-framework-openai

Provides OpenAI and Azure OpenAI integration…

permissive · top 5,000 on PyPI

agent-framework-core

Build, orchestrate, and deploy AI agents and…

permissive · top 5,000 on PyPI

agent-framework-ag-ui

Connects Agent Framework agents and workflows…

permissive · top 15,000 on PyPI

openai-agents

A framework for building multi-agent LLM…

permissive · top 1,000 on PyPI

agent-framework-chatkit

Bridges Microsoft Agent Framework agents with…

permissive · top 15,000 on PyPI

opentelemetry-instrumentation-openai-agents

Adds distributed tracing to OpenAI Agents…

permissive · top 5,000 on PyPI

knx-frontend

Provides a web-based user interface panel for…

permissive · top 15,000 on PyPI

exa-py

A Python SDK for the Exa web search API that…

permissive · top 5,000 on PyPI

metaphor-python

Python SDK for the Exa web search API,…

permissive · top 15,000 on PyPI

Further reading