nordabiz/blueprints/chat/__init__.py
Maciej Pienczyn 55718ed211 refactor: Extract chat blueprint (Phase 5)
- Create blueprints/chat/ with 9 routes:
  - chat, chat_settings, chat_start, chat_send_message
  - chat_get_history, chat_list_conversations, chat_delete_conversation
  - chat_feedback, chat_analytics
- Register chat blueprint with backward-compatible aliases
- Remove dead code from app.py (-458 lines)
- app.py: 13,058 → 12,600 lines (-3.5%)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-31 07:54:08 +01:00

13 lines
173 B
Python

"""
Chat Blueprint
==============
AI Chat routes and feedback.
"""
from flask import Blueprint
bp = Blueprint('chat', __name__)
from . import routes # noqa: E402, F401