Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kaeizen
/
grammo
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
grammo
/
api
/
urls.py
kaeizen
backend init
29cfad5
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
187 Bytes
from
django.urls
import
path
from
.views
import
hello, chat, end
urlpatterns = [
path(
'hello/'
, hello),
# path('start/', start),
path(
'chat/'
, chat),
path(
'end/'
, end)
]