Introduction
Trackly/Docs/Introduction

Source-driven docs

Introduction

Trackly is the AI Decision Engine for improving production AI systems. It goes beyond logs to surface plain-English insights, detect critical paths, and suggest auto-optimizations for your AI agents and chains.

Decision Engine capabilities

Auto Insights

Automatically surface plain-English findings like retry storms, cost spikes, and latency bottlenecks.

Critical Path

Highlight the slowest and most expensive steps in every agent run automatically.

Cost Intelligence

Get concrete model efficiency suggestions (e.g., 'Switch to GPT-4o-mini to save 68%').

Run Comparison

Side-by-side comparison of cost, latency, and steps to catch regressions fast.

Provider constants

The SDK exports a tiny helper object if you prefer constants over raw strings.

python
from trackly import providers

print(providers.LANGCHAIN)  # "langchain"
print(providers.ANTHROPIC)  # "anthropic"
print(providers.OLLAMA)     # "ollama"
print(providers.GEMINI)     # "gemini"
Last updated: April 2026Next: Resources