Spaces:
Sleeping
Sleeping
File size: 288 Bytes
62f67d4 | 1 2 3 4 5 6 7 8 9 10 11 | import os
from django.conf import settings
def space_urls(request):
return {
'PREDICTOR_BASE_URL': getattr(settings, 'PREDICTOR_SPACE_URL', '/'),
'CHATBOT_BASE_URL': getattr(settings, 'CHATBOT_SPACE_URL', '/chatbot/'),
'LOCATOR_BASE_URL': '/locator/',
}
|