mirror of
https://github.com/thecyberlearn/quantum-ai.git
synced 2026-08-18 11:12:59 +00:00
- Create complete 5 Whys Analysis Agent with chat-based interaction - Implement dual-mode processor (free chat vs paid report generation) - Add typing indicators with animated dots for better user feedback - Enable report generation only after 2+ questions for smart activation - Simplify report form to button-only interface using chat history - Add basic formatting for professional report presentation - Configure conditional wallet deduction (charge only for final reports) - Set up N8N webhook integration for analysis processing 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
515 B
Python
13 lines
515 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'five_whys_analyzer'
|
|
|
|
urlpatterns = [
|
|
path('', views.five_whys_analyzer_detail, name='detail'),
|
|
path('chat/', views.FiveWhysAnalyzerChatView.as_view(), name='chat'),
|
|
path('report/', views.FiveWhysAnalyzerReportView.as_view(), name='report'),
|
|
path('session/<str:session_id>/', views.five_whys_analyzer_session, name='session'),
|
|
# Legacy compatibility
|
|
path('process/', views.FiveWhysAnalyzerProcessView.as_view(), name='process'),
|
|
] |