from django.urls import path from .views import chat_completions, healthcheck, models # 슬래시 변형도 같이 — POST 는 리다이렉트에 기대면 본문이 유실됨. urlpatterns = [ path("api/ito/healthcheck", healthcheck), path("api/ito/healthcheck/", healthcheck), path("api/ito/models", models), path("api/ito/models/", models), path("api/ito/chat/completions", chat_completions), path("api/ito/chat/completions/", chat_completions), ]