from django.urls import path
from . import views
from django.views.generic import TemplateView


urlpatterns = [
    path("login/", views.login_view, name="login"),
    path('', views.chatbot, name='chatbot'),
    path('allibot/', views.allibot, name='allibot'),
    path('today_messages/', views.today_messages, name='today_messages'),
    path('yesterday_messages/', views.yesterday_messages, name='yesterday_messages'),
    path('previous_7_days/', views.previous_7_days, name='previous_7_days'),
    path('previous_30_days/', views.previous_30_days, name='previous_30_days'),
    path('speech_to_text/', views.speech_to_text, name='speech_to_text'),
    path('text_to_speech/', views.text_to_speech, name='text_to_speech'),
    path('update_thumbs_flag/', views.update_thumbs_flag, name='update_thumbs_flag'),
    path('signout/', views.signout, name='signout'),
    path(
        "activate_query_conversation/",
        views.activate_query_conversation,
        name="activate_query_conversation",
    ),
    path("forgot-password/", views.forgot_password_view, name="forgot_password"),
    path("reset-password/", views.reset_password_view, name="reset_password"),

 ]
