Constellation-Chatbot / chatbot /context_processors.py
unknown
initial: Chatbot Service
a1c77ae
Raw
History Blame Contribute Delete
288 Bytes
import os
from django.conf import settings
def space_urls(request):
return {
'PREDICTOR_BASE_URL': getattr(settings, 'PREDICTOR_SPACE_URL', '/'),
'CHATBOT_BASE_URL': '/chatbot/',
'LOCATOR_BASE_URL': getattr(settings, 'LOCATOR_SPACE_URL', '/locator/'),
}