forked from ShishirPatil/gorilla
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (73 loc) · 1.98 KB
/
pyproject.toml
File metadata and controls
81 lines (73 loc) · 1.98 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools>=61.0", "wheel", "build", "setuptools-scm[toml]>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bfcl_eval"
dynamic = ["version"]
description = "Berkeley Function Calling Leaderboard (BFCL)"
authors = [
{ name = "Huanzhi Mao", email = "huanzhimao@eecs.berkeley.edu" },
{ name = "Shishir Patil", email = "shishirpatil@eecs.berkeley.edu" },
{ name = "Sky Computing Lab", email = "sky@cs.berkeley.edu" },
]
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.86.0",
"mistralai==1.7.0",
"anthropic>=0.75.0",
"cohere==5.18.0",
"typer>=0.12.5",
"tabulate>=0.9.0",
"datamodel-code-generator==0.25.7",
"google-genai>=1.52.0",
"qwen-agent",
"mpmath==1.3.0",
"tenacity>=8.5.0",
"writer-sdk>=2.1.0",
"overrides",
"boto3",
"beautifulsoup4",
"html2text",
"rank_bm25==0.2.2",
"google-search-results",
"sentence-transformers>=2.7.0",
"faiss-cpu==1.11.0",
"networkx==3.3",
"filelock==3.20.0"
]
[project.scripts]
bfcl = "bfcl_eval.__main__:cli"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["bfcl_eval*"]
[tool.setuptools.package-data]
"bfcl_eval" = [
"data/**/*",
"scripts/*.py",
"./test_case_ids_to_generate.json",
"./.env.example",
"*.md",
]
[project.urls]
Repository = "https://github.com/ShishirPatil/gorilla/tree/main/berkeley-function-call-leaderboard"
[project.optional-dependencies]
oss_eval_vllm = ["vllm==0.8.5"]
oss_eval_sglang = ["sglang[all]"]
wandb = ["wandb==0.18.5"]
[tool.setuptools_scm]
tag_regex = '^v(?P<version>[0-9]{4}\.[0-9]{2}\.[0-9]{2}(?:\.[0-9]+)?)$'
fallback_version = "0.0.0.dev0"