{% extends "base.html" %} {% block title %}My Profile{% endblock %} {% block content %} {% set me_page = 'profile' %}

👤 My Profile

How your AI assistant understands you — your role, context, and working style.

🌟 Your Purpose
This appears in your Customer map and shapes every AI interaction.
👤 Identity
🏢 Organization
⏰ Work Rhythm
📤 Briefing Delivery
{% set channels = profile.delivery_channels_list or ['dashboard'] %} {% for ch, lbl in [('dashboard','Dashboard'),('email','Email (SMTP)'),('outlook','Outlook (M365)'),('slack','Slack'),('teams','Teams'),('gmail','Gmail')] %}
{% endfor %}
Dashboard is always on. Email tries SMTP then Gmail as fallback.
🧠 Inferred Role
{% if inferred_persona and inferred_persona.get('persona') != 'general' %} {{ inferred_persona.display_name }} · Canvases: {{ inferred_persona.canvases[:4] | join(', ') }}{% if inferred_persona.canvases|length > 4 %} +{{ inferred_persona.canvases|length - 4 }} more{% endif %} {% else %} Enter your job title above to see your inferred role. {% endif %}
{% if profile.profile_summary %}
✨ AI Profile Summary

{{ profile.profile_summary }}

{% endif %}
{% include "includes/iqe_query_widget.html" %} {% endblock %}