diff --git a/lms/envs/common.py b/lms/envs/common.py index 370a3f4bc5..ef46e8c600 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -3358,9 +3358,6 @@ INSTALLED_APPS = [ # Management of external user ids 'openedx.core.djangoapps.external_user_ids', - # Provides api for Demographics support - 'openedx.core.djangoapps.demographics', - # Management of per-user schedules 'openedx.core.djangoapps.schedules', @@ -4303,6 +4300,10 @@ SOCIAL_PLATFORMS = { } } +# Enable First Purchase Discount offer override +FIRST_PURCHASE_DISCOUNT_OVERRIDE_CODE = '' +FIRST_PURCHASE_DISCOUNT_OVERRIDE_PERCENTAGE = 15 + # E-Commerce API Configuration ECOMMERCE_PUBLIC_URL_ROOT = 'http://localhost:8002' ECOMMERCE_API_URL = 'http://localhost:8002/api/v2' @@ -4690,7 +4691,8 @@ ENTERPRISE_ALL_SERVICE_USERNAMES = [ ] # Setting for Open API key and prompts used by edx-enterprise. -OPENAI_API_KEY = '' +CHAT_COMPLETION_API = 'https://example.com/chat/completion' +CHAT_COMPLETION_API_KEY = 'i am a key' LEARNER_ENGAGEMENT_PROMPT_FOR_ACTIVE_CONTRACT = '' LEARNER_ENGAGEMENT_PROMPT_FOR_NON_ACTIVE_CONTRACT = '' LEARNER_PROGRESS_PROMPT_FOR_ACTIVE_CONTRACT = ''