Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Artteiv
/
arxiv_chatbot
like
0
Runtime error
App
Files
Files
Community
3444cc2
arxiv_chatbot
/
chat
/
urls.py
Artteiv
Upload 39 files
75df934
verified
8 months ago
raw
Copy download link
history
blame
169 Bytes
from
django.urls
import
path
from
.
import
views
urlpatterns = [
path(
''
, views.index, name=
'index'
),
path(
"<str:room_name>/"
, views.room, name=
"room"
),
]