openAI requests for categories and questions
This commit is contained in:
SDE
2023-05-27 07:40:36 +03:00
parent 595d98908a
commit b033f5c96d
18 changed files with 381 additions and 5 deletions

7
QuestionsApp/urls.py Normal file
View File

@@ -0,0 +1,7 @@
from django.contrib import admin
from django.urls import path, include
from .views import *
urlpatterns = [
path('test_code', test_code, name='test_code')
]