Skip to content

Commit

Permalink
Pin openai version to the one we use. (#24)
Browse files Browse the repository at this point in the history
The latest openai release introduced breaking changes, so we must pin.
  • Loading branch information
manugoyal authored Nov 7, 2023
1 parent 37f407b commit 8a531ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion py/autoevals/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "0.0.28"
VERSION = "0.0.29"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
with open(os.path.join(dir_name, "README.md"), "r", encoding="utf-8") as f:
long_description = f.read()

install_requires = ["chevron", "openai", "levenshtein", "pyyaml"]
install_requires = ["chevron", "openai==0.28.1", "levenshtein", "pyyaml"]

extras_require = {
"dev": [
Expand Down

0 comments on commit 8a531ad

Please sign in to comment.