Interactive developer UI for testing and debugging agents and workflows.
serve()- Launch the DevUI serverDevServer- The FastAPI-based development serverregister_cleanup()- Register cleanup hooks for entitiesCheckpointConversationManager- Manages conversation checkpoints
AgentFrameworkRequest- Request model for agent invocationsOpenAIResponse/OpenAIError- OpenAI-compatible response modelsDiscoveryResponse/EntityInfo- Entity discovery models
from agent_framework.devui import serve
agent = Agent(...)
serve(entities=[agent], port=8080, auto_open=True)# Run with auto-discovery
devui ./agents
# Run with specific entities
devui --entities my_agent.pyfrom agent_framework.devui import serve, register_cleanup
# or directly:
from agent_framework_devui import serve