Skip to content

Commit

Permalink
[BFCL] Specify package version in requirements.txt (#515)
Browse files Browse the repository at this point in the history
This PR specify the package versions in `requirements.txt` to avoid
potential compatibility issues.
  • Loading branch information
HuanzhiMao authored Jul 17, 2024
1 parent fe76692 commit 57a9fe8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion berkeley-function-call-leaderboard/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Read more about the technical details and interesting insights in our blog post!
conda create -n BFCL python=3.10
conda activate BFCL
pip install -r requirements.txt # Inside gorilla/berkeley-function-call-leaderboard
pip install vllm # If you have vLLM supported GPU(s) and want to run our evaluation data against self-hosted OSS models.
pip install vllm==0.5.0 # If you have vLLM supported GPU(s) and want to run our evaluation data against self-hosted OSS models.
```


Expand Down
24 changes: 13 additions & 11 deletions berkeley-function-call-leaderboard/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
requests
tqdm
tree_sitter~=0.21.0
torch
ray
shortuuid
mistralai>=0.1.3
anthropic~=0.29.0
openai
numpy
cohere~=5.2.5
requests==2.32.3
tqdm==4.66.4
tree_sitter==0.21.3
torch==2.3.0
ray==2.32.0
shortuuid==1.0.13
mistralai==0.4.2
anthropic==0.31.1
openai==1.35.13
numpy==1.26.4
cohere==5.5.8
tree-sitter-java==0.21.0
tree-sitter-javascript==0.21.4

# vllm==0.5.0

0 comments on commit 57a9fe8

Please sign in to comment.