-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix parameter errors when invoking bedrock llms
- Loading branch information
1 parent
a5e03d9
commit c40340d
Showing
2 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "refchecker" | ||
version = "0.2.13" | ||
version = "0.2.14" | ||
description = "RefChecker provides automatic checking pipeline for detecting fine-grained hallucinations generated by Large Language Models." | ||
authors = [ | ||
"Xiangkun Hu <[email protected]>", | ||
|
@@ -15,7 +15,7 @@ license = "Apache-2.0" | |
[tool.poetry.dependencies] | ||
python = "^3.10" | ||
spacy = "^3.7" | ||
boto3 = "^1.34" | ||
boto3 = "^1.35" | ||
torch = "^2" | ||
transformers = "^4.41" | ||
rank-bm25 = "^0.2" | ||
|
@@ -26,7 +26,7 @@ nltk = "^3.8" | |
pytorch_lightning = "^2.3" # for alignscore | ||
scikit-learn = "^1.5" | ||
accelerate = "^0.31" | ||
litellm = "^1.48" | ||
litellm = "^1.49" | ||
diskcache = "^5" | ||
|
||
# optional dependencies required by specific modules | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters