{% extends "base.html" %} {% block content %} {% if session.get('user_id') %}
Conversations
New
Quick Settings
{% if user and user.settings %}
{% else %}

Settings not available

{% endif %}
{% if active_conversation %} {{ active_conversation.title }} {{ active_conversation.id }}
{% else %} New Conversation {% endif %}
{% if active_conversation and messages %}
{% for message in messages %}
{% autoescape false %} {{ message.content|safe }} {% endautoescape %}
{% endfor %}
{% else %}
Hello! I'm an advanced AI assistant. How can I help you today?
{% endif %}
{% else %}

Welcome to THOR - Your Personal Growth Welcome to the THOR AI System Learning AI

Designed for private personal usage, THOR helps you grow, learn, and test new ideas with minimal restrictions. Your personal AI companion for expanding knowledge and skills.

A powerful Python-based AI with NLP capabilities, external model integration, and user-controlled behavior settings.

NLP Capabilities

Advanced natural language processing enables understanding context, intent, and generating human-like responses.

User-Controlled Settings

Customize safety features, ethics checks, and model behavior according to your needs and preferences.

Model Integration

Seamlessly integrate models from Hugging Face and GitHub, with the ability to clone and modify them.

{% endif %} {% endblock %}