From 0a8f5756cb261c1204a6304245c3ddbd513f1b08 Mon Sep 17 00:00:00 2001 From: PRAMOD B N Date: Wed, 15 Jul 2026 20:58:18 -0500 Subject: [PATCH] Replace text architecture diagram with ecosystem image --- .github/workflows/docs.yml | 1 - ROADMAP.md | 15 +-------------- src/agenticlens/cli/render.py | 6 +----- 3 files changed, 2 insertions(+), 20 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index bcd97c4..9210f5a 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -3,7 +3,6 @@ name: Docs on: push: branches: [main] - pull_request: workflow_dispatch: permissions: diff --git a/ROADMAP.md b/ROADMAP.md index fd22664..12881d1 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -70,20 +70,7 @@ representation of that specification, not the specification itself. ## Architecture View -```text -AI Frameworks and Runtimes -LangGraph, CrewAI, OpenAI Agents SDK, AutoGen, Semantic Kernel, -LlamaIndex, Haystack, custom apps - | - v -AgenticLens Integrations - | - v -AI Operations Specification - | | | - v v v -AgenticLens Agentic Chaos DeepAgentLabs MCP -``` +![AI Operations Ecosystem](https://raw.githubusercontent.com/DeepAgentLabs/.github/main/profile/assets/ai-operations-ecosystem.png) ## Guiding Principles diff --git a/src/agenticlens/cli/render.py b/src/agenticlens/cli/render.py index 24ba0e1..01df997 100644 --- a/src/agenticlens/cli/render.py +++ b/src/agenticlens/cli/render.py @@ -128,11 +128,7 @@ def render_token_optimization( rendered_steps.add(step.id) tokens_saved = sum(rec.tokens_saved for rec in recs) token_basis = _step_token_basis(step.metrics.total_tokens, recs) - savings_pct = ( - min(100.0, (tokens_saved / token_basis) * 100) - if token_basis - else 0.0 - ) + savings_pct = min(100.0, (tokens_saved / token_basis) * 100) if token_basis else 0.0 primary = max(recs, key=lambda rec: rec.tokens_saved) table.add_row( step.name,