voice-clone / config /urls.py
renator's picture
change schemas
2664b59
raw
history blame
1.14 kB
from django.contrib import admin
from django.urls import path, re_path, include
from rest_framework import permissions
from drf_yasg.views import get_schema_view
from drf_yasg import openapi
schema_view = get_schema_view(
openapi.Info(
title="Voice Clone",
default_version='v1',
description="Your API Description",
terms_of_service="https://huggingface.co/spaces/undetectable/voice-clone",
contact=openapi.Contact(email="[email protected]"),
license=openapi.License(name="Your License"),
),
public=True,
url="https://undetectable-voice-clone.hf.space/",
permission_classes=(permissions.AllowAny,),
)
from texttovoice.views import TextToSpeechCreateView
urlpatterns = [
path('admin/', admin.site.urls),
path('auth/', include('accounts.urls')),
path('generate-speech/', TextToSpeechCreateView.as_view(), name='generate-speech-create'),
path('swagger/', schema_view.with_ui('swagger', cache_timeout=0), name='schema-swagger-ui'),
re_path(r'^swagger(?P<format>\.json|\.yaml)$', schema_view.without_ui(cache_timeout=0), name='schema-json'),
]