{% extends "base.html" %} {% set active = "synthesis" %} {% block title %}Cortex — Synthesis{% endblock %} {% block content %}

Synthesis

Generate an AI summary of recent knowledge activity.

{% if synthesis %} {% if synthesis.status == 'nothing_to_synthesize' or not synthesis.narrative %}
Synthesis Result

Nothing to synthesize for the last {{ synthesis.period_days or period_days }} days{% if synthesis.project %} in project "{{ synthesis.project }}"{% endif %}. Capture some knowledge first, then try again.

{% else %}
Synthesis Result
{{ synthesis.narrative }}
{% if synthesis.themes %}
Themes
{% endif %} {% if synthesis.sources %}
Sources ({{ synthesis.object_count or synthesis.sources | length }})
{% endif %} {% endif %} {% endif %} {% endblock %}