From 05817bf6a24cb312c823a3b0fa2a3abb89fa4efc Mon Sep 17 00:00:00 2001 From: Li Yu Date: Mon, 13 Nov 2023 20:16:49 -0500 Subject: [PATCH] add specific version of openai to setup.py --- requirements.txt | 1 - setup.py | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 772b214..8ee2a21 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,7 +7,6 @@ python-dateutil==2.8.1 scipy==1.7.1 six==1.15.0 coverage -openai==0.27.8 langchain==0.0.317 llama-index==0.8.61 pypdf>=3.17.0 diff --git a/setup.py b/setup.py index eb707ae..29d5272 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,8 @@ def read(fname): author="Databricks", packages=find_packages(exclude=['tests', 'tests.*', 'data', 'data.*', 'notebook', 'notebook.*']), install_requires=[ - 'python-dateutil' + 'python-dateutil', + 'openai==0.27.8' ], description='feature factory', long_description=read('README.md'),