Spaces:
Runtime error
Runtime error
remove pycache
Browse files- arxivdb/chroma.sqlite3 +1 -1
- chat/models.py +0 -0
- chat/templates/index.html +1 -0
- chatbot_django/__pycache__/__init__.cpython-311.pyc +0 -0
- chatbot_django/__pycache__/asgi.cpython-311.pyc +0 -0
- chatbot_django/__pycache__/settings.cpython-311.pyc +0 -0
- chatbot_django/__pycache__/urls.cpython-311.pyc +0 -0
- chatbot_django/settings.py +1 -1
- chatbot_django/wsgi.py +1 -1
arxivdb/chroma.sqlite3
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 123736064
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fadedeb9abe256319f0314cadf5319f48e26559017f77049f9fa573cead4e02c
|
3 |
size 123736064
|
chat/models.py
ADDED
File without changes
|
chat/templates/index.html
CHANGED
@@ -191,6 +191,7 @@
|
|
191 |
isLoading: false,
|
192 |
message: '',
|
193 |
messages: [],
|
|
|
194 |
chatSocket : new WebSocket(
|
195 |
'ws://'
|
196 |
+ window.location.host
|
|
|
191 |
isLoading: false,
|
192 |
message: '',
|
193 |
messages: [],
|
194 |
+
|
195 |
chatSocket : new WebSocket(
|
196 |
'ws://'
|
197 |
+ window.location.host
|
chatbot_django/__pycache__/__init__.cpython-311.pyc
DELETED
Binary file (170 Bytes)
|
|
chatbot_django/__pycache__/asgi.cpython-311.pyc
DELETED
Binary file (1.24 kB)
|
|
chatbot_django/__pycache__/settings.cpython-311.pyc
DELETED
Binary file (2.7 kB)
|
|
chatbot_django/__pycache__/urls.cpython-311.pyc
DELETED
Binary file (1.25 kB)
|
|
chatbot_django/settings.py
CHANGED
@@ -71,7 +71,7 @@ TEMPLATES = [
|
|
71 |
]
|
72 |
|
73 |
WSGI_APPLICATION = 'chatbot_django.wsgi.application'
|
74 |
-
ASGI_APPLICATION =
|
75 |
|
76 |
|
77 |
# Database
|
|
|
71 |
]
|
72 |
|
73 |
WSGI_APPLICATION = 'chatbot_django.wsgi.application'
|
74 |
+
ASGI_APPLICATION = 'chatbot_django.asgi.application'
|
75 |
|
76 |
|
77 |
# Database
|
chatbot_django/wsgi.py
CHANGED
@@ -13,4 +13,4 @@ from django.core.wsgi import get_wsgi_application
|
|
13 |
|
14 |
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'chatbot_django.settings')
|
15 |
|
16 |
-
application = get_wsgi_application()
|
|
|
13 |
|
14 |
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'chatbot_django.settings')
|
15 |
|
16 |
+
# application = get_wsgi_application()
|