Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name: Docs
on:
push:
branches: [main]
pull_request:
workflow_dispatch:

permissions:
Expand Down
15 changes: 1 addition & 14 deletions ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 1 addition & 5 deletions src/agenticlens/cli/render.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Loading