Skip to main content

An Open edX plugin to add Open Learning AI chat aside to xBlocks

Project description

An xBlock aside to add MIT Open Learning chat into xBlocks.

Purpose

MIT’s AI chatbot for Open edX

Setup

For detailed installation instructions, please refer to the plugin installation guide.

Installation required in:

  • LMS

  • Studio (CMS)

Configuration

1. edx-platform configuration

  • Add the following configuration values to the config file in Open edX. For any release after Juniper, that config file is /edx/etc/lms.yml. If you’re using private.py, add these values to lms/envs/private.py. These should be added to the top level. Ask a fellow developer for these values.

    MIT_LEARN_AI_API_URL: <MIT_LEARN_AI_API_URL>
    MIT_LEARN_API_BASE_URL: <MIT_LEARN_API_BASE_URL>
    MIT_LEARN_SUMMARY_FLASHCARD_URL: <MIT_LEARN_SUMMARY_FLASHCARD_URL>
  • For Tutor installations, these values can also be managed through a custom Tutor plugin.

2. Add database record

  • Create a record for the XBlockAsidesConfig model (LMS admin URL: /admin/lms_xblock/xblockasidesconfig/).

  • Create a record in the StudioConfig model (CMS admin URL: /admin/xblock_config/studioconfig/).

3. In frontend-app-learning, Run the below in the shell inside the learning MFE folder:

This will download the smoot-design package and copy the pre-bundled JS file to a location loadable by OpenEdx.

npm pack @mitodl/smoot-design@^6.17.0
tar -xvzf mitodl-smoot-design*.tgz
mkdir -p public/static/smoot-design
cp package/dist/bundles/* public/static/smoot-design
  1. Create env.config.jsx in the frontend-app-learning and add the below code:

The Unit is rendered inside an Iframe and we use postMessage to communicate between the Iframe and the parent window. The below code is used to initialize the remoteAiChatDrawer.

import { getConfig } from '@edx/frontend-platform';
import { getAuthenticatedHttpClient } from '@edx/frontend-platform/auth';

import(
   /* webpackIgnore: true */
"/static/smoot-design/aiDrawerManager.es.js").then(module => {
   module.init({
      messageOrigin: getConfig().LMS_BASE_URL,
      transformBody: messages => ({ message: messages[messages.length - 1].content }),
      getTrackingClient: getAuthenticatedHttpClient,
   })
})

const config = {
...process.env,
};

export default config;

(Alternatively, you can import the drawer code from a CDN like kg.com/@mitodl/smoot-design@6.4.0/dist/bundles/remoteTutorDrawer.umd.js to skip Step 3. However, the steps outlined here are most similar to what we do in production.)

5. Start learning MFE by npm run dev

6. In LMS, enable the ol_openedx_chat.ol_openedx_chat_enabled waffle flag at <LMS>/admin/waffle/flag/

This will enable the ol_openedx_chat plugin for all courses. You can disable it and add a Waffle Flag Course Override at /admin/waffle_utils/waffleflagcourseoverridemodel/ to enable it for a single course.

7. Set FEATURES[“ENABLE_OTHER_COURSE_SETTINGS”] = True in your cms/envs/private.py and lms/envs/private.py files

This enables “Other Course Settings” below.

8. Go to any course in CMS > Settings > Advanced Settings and add the below in “Other Course Settings”

{"OL_OPENEDX_CHAT_VIDEO_BLOCK_ENABLED": true, "OL_OPENEDX_CHAT_PROBLEM_BLOCK_ENABLED": true}
  • OL_OPENEDX_CHAT_VIDEO_BLOCK_ENABLED is used to enable/disable the VideoGPT for all videos.

  • OL_OPENEDX_CHAT_PROBLEM_BLOCK_ENABLED is used to enable/disable the AI Chat for all problems.

  • Once these settings are enabled, you will see a checkbox Enable AI Chat Assistant below problem and video blocks in the CMS course unit.

CMS View

ol_openedx_chat/static/images/ai_chat_aside_cms_view.png
  • You will also see a Chat Button titled “AskTIM about this video/problem” in the LMS. Now AI Chat/VideoGPT is enabled for all videos and problems.

LMS View with AskTIM button

ol_openedx_chat/static/images/ai_chat_aside_lms_view.png

LMS Chat Drawer View

ol_openedx_chat/static/images/ai_chat_aside_lms_drawer_view.png

9. Disable it for a single block

If you want to disable it for a few videos/problems then you disable the Enable AI Chat Assistant checkbox against the block in CMS.

Translations

Only Ask TIM is not translated (brand). All other user-facing strings are translatable.

Translations live in the translations repo (e.g. https://github.com/mitodl/mitxonline-translations) at translations/open-edx-plugins/ol_openedx_chat/conf/locale/. For any language, run sync_and_translate_language to create or update the .po files there; then run make pull_translations in edx-platform to pull and compile them into conf/plugins-locale/plugins/ol_openedx_chat/. Until make pull_translations is run, the UI shows English (msgid fallback).

Why no conf/locale/config.yaml or Makefile (unlike edx-bulk-grades)?

Plugins like edx-bulk-grades use conf/locale/config.yaml and a Makefile (extract_translations, compile_translations, pull_translations) because that plugin repo is the source for Transifex/Atlas. For ol_openedx_chat we use a different flow: the translations repo holds the .po files; sync_and_translate_language syncs and translates there, and edx-platform’s make pull_translations pulls into conf/plugins-locale/plugins/ol_openedx_chat/. This plugin repo never runs Atlas or Transifex, so config.yaml and a Makefile here would be unused.

Documentation

License

The code in this repository is licensed under the AGPL 3.0 unless otherwise noted.

Please see LICENSE.txt for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ol_openedx_chat-0.5.5.tar.gz (577.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ol_openedx_chat-0.5.5-py3-none-any.whl (582.7 kB view details)

Uploaded Python 3

File details

Details for the file ol_openedx_chat-0.5.5.tar.gz.

File metadata

  • Download URL: ol_openedx_chat-0.5.5.tar.gz
  • Upload date:
  • Size: 577.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for ol_openedx_chat-0.5.5.tar.gz
Algorithm Hash digest
SHA256 9076d6fc78797bc15f291839befe52217dabd4b3a9588b5c6f9d34e4b18b4cb9
MD5 0059de88d501dac9636415d5fea2f8cd
BLAKE2b-256 af43ae72856d1e7f80a45f46df5942b007140d7b09c22ad851d1f84a592d4e7a

See more details on using hashes here.

File details

Details for the file ol_openedx_chat-0.5.5-py3-none-any.whl.

File metadata

File hashes

Hashes for ol_openedx_chat-0.5.5-py3-none-any.whl
Algorithm Hash digest
SHA256 ed8dc7d5f0acfead068eab4cedc7dd13625b154a8d4c9eae679fab5ca5975eb8
MD5 7a550e9b1fc2800a14b7c9ee5595f4b8
BLAKE2b-256 d3b4e416b1752f1e3e256121546199f3dd0bfa50b8fc17c572faa046a9ca354c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page