Skip to content

Commit

Permalink
added note to install langchain==0.0.180
Browse files Browse the repository at this point in the history
  • Loading branch information
amaiya committed Jul 23, 2023
1 parent 1c53e8b commit 6845378
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Most recent releases are shown at the top. Each release shows:
- N/A

### fixed:
- Removed pin to `paper-qa==2.1.1` due to issue in latest `langchain` release
- Removed pin to `paper-qa==2.1.1` due to issue in latest `langchain` release. Added notification to install `langchain==0.0.180`


## 0.37.5 (2023-07-22)
Expand Down
2 changes: 1 addition & 1 deletion ktrain/text/qa/generative_qa.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def __init__(self, llm=None):
"""
if not PAPERQA_INSTALLED:
raise Exception(
"GenerativeQA in ktrain requires the paper-qa package by Andrew White: pip install paper-qa==2.1.1"
"GenerativeQA in ktrain requires the paper-qa package by Andrew White: pip install paper-qa==2.1.1 langchain==0.0.180"
)
self.docs = Docs(llm)
if is_notebook():
Expand Down

0 comments on commit 6845378

Please sign in to comment.