{% extends "base.html" %} {% set active_page = "about" %} {% block title %}About — IETF Draft Analyzer{% endblock %} {% block content %}

About IETF Draft Analyzer

What is this?

A tool for tracking, categorizing, rating, and mapping IETF Internet-Drafts focused on AI and agent-related topics. It uses Claude for analysis and rating, Ollama for embeddings, and SQLite for storage.

The dashboard provides interactive visualizations of the draft landscape, including category breakdowns, rating distributions, author networks, extracted ideas, and gap analysis.

Current Data

Total Drafts
{{ stats.total_drafts }}
Rated Drafts
{{ stats.rated_count }}
Authors Tracked
{{ stats.author_count }}
Ideas Extracted
{{ stats.idea_count }}
Gaps Identified
{{ stats.gap_count }}
API Tokens Used
{{ "{:,}".format(stats.input_tokens + stats.output_tokens) }}

Tech Stack

{% endblock %}