forked from ShishirPatil/gorilla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.25 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bfcl"
version = "1.0.0"
description = "Berkeley Function Calling Leaderboard (BFCL)"
authors = [{ name = "Sky Computing Lab", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.10"
license = { "text" = "Apache 2.0" }
dependencies = [
"requests",
"tqdm",
"numpy==1.26.4",
"pandas",
"pathlib",
"huggingface_hub",
"pydantic>=2.8.2",
"python-dotenv>=1.0.1",
"tree_sitter==0.21.3",
"tree-sitter-java==0.21.0",
"tree-sitter-javascript==0.21.4",
"openai==1.58.0",
"mistralai==1.1.0",
"anthropic==0.39.0",
"cohere==5.13.3",
"typer>=0.12.5",
"tabulate>=0.9.0",
"datamodel-code-generator==0.25.7",
"google-cloud-aiplatform==1.72.0",
"mpmath==1.3.0",
"tenacity==9.0.0",
"writer-sdk>=1.2.0",
"overrides",
"boto3"
]
[project.scripts]
bfcl = "bfcl.__main__:cli"
[tool.setuptools.packages.find]
include = ["bfcl*"]
[project.urls]
Repository = "https://github.com/ShishirPatil/gorilla/tree/main/berkeley-function-call-leaderboard"
[project.optional-dependencies]
oss_eval_vllm = ["vllm==0.6.3"]
oss_eval_sglang = ["sglang[all]"]
wandb = ["wandb==0.18.5"]