mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
Python: Improve DevUI, add Context Inspector view as new tab under traces (#2742)
* Improve DevUI, add Context Inspector view as new tab under traces * fix mypy errors * fix: Handle stale MCP connections in DevUI executor MCP tools can become stale when HTTP streaming responses end - the underlying stdio streams close but `is_connected` remains True. This causes subsequent requests to fail with `ClosedResourceError`. Add `_ensure_mcp_connections()` to detect and reconnect stale MCP tools before agent execution. This is a workaround for an upstream Agent Framework issue where connection state isn't properly tracked. Fixes MCP tools failing on second HTTP request in DevUI. fixes #1476 #1515 #2865 * fix #1572 report import dependency errors more clearly * Ensure there is streaming toggle where users can select streaming vs non streaming mode in devui . Fixes .NET: [Python] DevUI tool call rendering in non-streaming mode? * remove unused dead code * improve ux - workflows with agents show a chat component in execution timelien, also ensure magentic final output shows correctly * update ui build * update devui to use instrumentation instead of tracing, other instrumentation and type/instance check fixes
This commit is contained in:
committed by
GitHub
Unverified
parent
db283cd396
commit
2e1189ca65
@@ -102,12 +102,32 @@ agents/
|
||||
└── .env # Optional: shared environment variables
|
||||
```
|
||||
|
||||
## Viewing Telemetry (Otel Traces) in DevUI
|
||||
### Importing from External Modules
|
||||
|
||||
Agent Framework emits OpenTelemetry (Otel) traces for various operations. You can view these traces in DevUI by enabling tracing when starting the server.
|
||||
If your agents import tools or utilities from sibling directories (e.g., `from tools.helpers import my_tool`), you must set `PYTHONPATH` to include the parent directory:
|
||||
|
||||
```bash
|
||||
devui ./agents --tracing framework
|
||||
# Project structure:
|
||||
# backend/
|
||||
# ├── agents/
|
||||
# │ └── my_agent/
|
||||
# │ └── agent.py # contains: from tools.helpers import my_tool
|
||||
# └── tools/
|
||||
# └── helpers.py
|
||||
|
||||
# Run from project root with PYTHONPATH
|
||||
cd backend
|
||||
PYTHONPATH=. devui ./agents --port 8080
|
||||
```
|
||||
|
||||
Without `PYTHONPATH`, Python cannot find modules in sibling directories and DevUI will report an import error.
|
||||
|
||||
## Viewing Telemetry (Otel Traces) in DevUI
|
||||
|
||||
Agent Framework emits OpenTelemetry (Otel) traces for various operations. You can view these traces in DevUI by enabling instrumentation when starting the server.
|
||||
|
||||
```bash
|
||||
devui ./agents --instrumentation
|
||||
```
|
||||
|
||||
## OpenAI-Compatible API
|
||||
@@ -196,11 +216,12 @@ Options:
|
||||
--port, -p Port (default: 8080)
|
||||
--host Host (default: 127.0.0.1)
|
||||
--headless API only, no UI
|
||||
--config YAML config file
|
||||
--tracing none|framework|workflow|all
|
||||
--no-open Don't automatically open browser
|
||||
--instrumentation Enable OpenTelemetry instrumentation
|
||||
--reload Enable auto-reload
|
||||
--mode developer|user (default: developer)
|
||||
--auth Enable Bearer token authentication
|
||||
--auth-token Custom authentication token
|
||||
```
|
||||
|
||||
### UI Modes
|
||||
|
||||
Reference in New Issue
Block a user