- 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>
13 lines
173 B
Python
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
|