Skip to content

Commit 45d7847

Browse files
Merge pull request #196 from openedx/iahmad/ENT-8978
feat: [ENT-8978] replaced openai client with chat completion api
2 parents eb5db7c + 4735715 commit 45d7847

16 files changed

+400
-266
lines changed

.github/workflows/mysql8-migrations.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
pip uninstall -y mysqlclient
5353
pip install --no-binary mysqlclient mysqlclient
5454
pip uninstall -y xmlsec
55-
pip install --no-binary xmlsec xmlsec
55+
pip install --no-binary xmlsec xmlsec==1.3.13
5656
5757
- name: Initiate Services
5858
run: |

CHANGELOG.rst

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ Change Log
1313
1414
Unreleased
1515

16+
[1.51.0] - 2024-07-03
17+
---------------------
18+
* feat: Replaced client for ai chat
19+
1620
[1.50.0] - 2024-03-27
1721
---------------------
1822
* feat: Skill validation can be disbaled for a course or an organization

requirements/ci.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.8
2+
# This file is autogenerated by pip-compile with Python 3.9
33
# by the following command:
44
#
55
# make upgrade
66
#
77
distlib==0.3.8
88
# via virtualenv
9-
filelock==3.13.1
9+
filelock==3.15.4
1010
# via
1111
# tox
1212
# virtualenv
13-
packaging==24.0
13+
packaging==24.1
1414
# via tox
15-
platformdirs==4.2.0
15+
platformdirs==4.2.2
1616
# via virtualenv
17-
pluggy==1.4.0
17+
pluggy==1.5.0
1818
# via tox
1919
py==1.11.0
2020
# via tox
@@ -26,5 +26,5 @@ tox==3.28.0
2626
# via
2727
# -c requirements/constraints.txt
2828
# -r requirements/ci.in
29-
virtualenv==20.25.1
29+
virtualenv==20.26.3
3030
# via tox

requirements/constraints.txt

+5-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ django<4.0
1313

1414
path==13.1.0
1515

16-
celery<5.0
17-
1816
# latest version causing issues in discovery.
1917
algoliasearch-django<4.0.0
2018
algoliasearch<2.0.0
@@ -28,3 +26,8 @@ sphinxcontrib-devhelp<=1.0.2
2826
sphinxcontrib-htmlhelp<=2.0.1
2927
sphinxcontrib-qthelp<=1.0.3
3028
sphinxcontrib-serializinghtml<=1.1.5
29+
accessible-pygments<=0.0.4
30+
alabaster<=0.7.13
31+
pydata-sphinx-theme<=0.14.4
32+
sphinx<=7.1.2
33+
sphinx-book-theme<=1.0.1

0 commit comments

Comments
 (0)