{% extends "base.html" %} {% block title %}Knowledge Search - ICDEV™ Dashboard{% endblock %} {% block content %}

Knowledge Search

Phase 64 — RAG-powered search across all ICDEV™ knowledge (D-RAG-1 through D-RAG-14)

Try: FedRAMP AC-2 patterns · supply chain vulnerabilities · creative feature gaps · innovation signals
{{ status.total_chunks if status else '--' }}
Total Chunks
{{ status.registered_sources if status else '--' }}
Source Types
{{ status.by_tier | length if status and status.by_tier else '--' }}
Active Tiers
{{ status.vector_store_backend if status else '--' }}
Backend
{{ 'Online' if status and status.vector_store_available else 'Offline' }}
Status
{% if status and status.by_source_type %}

Chunk Distribution by Source

{% set ns = namespace(x=10, max_val=1) %} {% for src, count in status.by_source_type.items() %} {% if count > ns.max_val %}{% set ns.max_val = count %}{% endif %} {% endfor %} {% set bar_count = status.by_source_type | length %} {% set bar_width = ((780 / bar_count) - 6) if bar_count > 0 else 40 %} {% for src, count in status.by_source_type.items() %} {% set bar_height = ((count / ns.max_val) * 160) if ns.max_val > 0 else 5 %} {{ src[:12] }} {{ count }} {% set ns.x = ns.x + bar_width + 6 %} {% endfor %}
{% endif %} {% if status and status.by_tier %}

Tier Breakdown

{% for tier, count in status.by_tier.items() %}
{{ count }}
{{ tier }}
{% endfor %}
{% endif %}

Recent Searches

{% if recent_searches %} {% for s in recent_searches %} {% endfor %} {% else %} {% endif %}
Query Hash Results Top Score Re-ranked Duration (ms) Time
{{ s.query_hash[:16] }}... {{ s.results_count }} {{ '%.3f'|format(s.top_score) if s.top_score else '--' }} {{ '✓' if s.rerank_used else '' }} {{ s.duration_ms if s.duration_ms else '--' }} {{ s.created_at }}
No searches yet
{% if status and status.last_ingestion %}

Last ingestion: {{ status.last_ingestion }}

{% endif %}
{% endblock %}