Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Artteiv/arxiv_chatbot
ArxivBot
/
arxiv_chatbot
like
0
Sleeping
App
Files
Files
Community
3826b3b
arxiv_chatbot
/
chat
/
urls.py
Artteiv
Upload 39 files
75df934
verified
6 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"
),
]