Skip to main content

Berkeley Function Calling Leaderboard (BFCL)

Project description

Berkeley Function Calling Leaderboard (BFCL)

Table of Contents


Introduction

We introduce the Berkeley Function Calling Leaderboard (BFCL), the first comprehensive and executable function call evaluation dedicated to assessing Large Language Models' (LLMs) ability to invoke functions. Unlike previous evaluations, BFCL accounts for various forms of function calls, diverse scenarios, and executability.

💡 Read more in our blog posts:

🦍 See the live leaderboard at Berkeley Function Calling Leaderboard

Architecture Diagram


Installation & Setup

Basic Installation

# Create a new Conda environment with Python 3.10
conda create -n BFCL python=3.10
conda activate BFCL

# Clone the Gorilla repository
git clone https://github.com/ShishirPatil/gorilla.git

# Change directory to the `berkeley-function-call-leaderboard`
cd gorilla/berkeley-function-call-leaderboard

# Install the package in editable mode
pip install -e .

Installing from PyPI

If you simply want to run the evaluation without making code changes, you can install the prebuilt wheel instead. Be careful not to confuse our package with the unrelated bfcl project on PyPI—make sure you install bfcl-eval:

pip install bfcl-eval  # Be careful not to confuse with the unrelated `bfcl` project on PyPI!

Extra Dependencies for Self-Hosted Models

For locally hosted models, choose one of the following backends, ensuring you have the right GPU and OS setup:

sglang is much faster than vllm but only supports newer GPUs with SM 80+ (Ampere etc). If you are using an older GPU (T4/V100), you should use vllm instead as it supports a much wider range of GPUs.

Using vllm:

pip install -e .[oss_eval_vllm]

Using sglang:

pip install -e .[oss_eval_sglang]

Optional: If using sglang, we recommend installing flashinfer for speedups. Find instructions here.

Setting up Environment Variables

We store environment variables in a .env file. A sample .env.example file is distributed with the package. Copy it to your working directory and fill in the necessary values.

cp .env.example .env
# Fill in necessary values in `.env`

If you are running any proprietary models, make sure the model API keys are included in your .env file. Models like GPT, Claude, Mistral, Gemini, Nova, will require them.

The library looks for the .env file in the project root, which defaults to the installed package directory. You can override this by setting BFCL_DOTENV_PATH or BFCL_PROJECT_ROOT.

(Optional) Initializing Project Path

Use the bfcl init command to set up a custom working directory. This command creates result/ and score/ folders, copies .env.example to the desired location, and appends the environment variables to your shell profile so you can run BFCL from anywhere.

bfcl init --project-root /path/to/dir --env-path /path/to/dir/.env

bfcl init will update your ~/.bashrc or ~/.zshrc with the required BFCL_PROJECT_ROOT and BFCL_DOTENV_PATH exports. Restart your shell or run the appropriate source command to activate them.


Running Evaluations

Generating LLM Responses

Selecting Models and Test Categories

  • MODEL_NAME: For available models, please refer to SUPPORTED_MODELS.md. If not specified, the default model gorilla-openfunctions-v2 is used.
  • TEST_CATEGORY: For available test categories, please refer to TEST_CATEGORIES.md. If not specified, all categories are included by default.

You can provide multiple models or test categories by separating them with commas. For example:

bfcl generate --model claude-3-5-sonnet-20241022-FC,gpt-4o-2024-11-20-FC --test-category simple,parallel,multiple,multi_turn

Output and Logging

  • By default, generated model responses are stored in a result/ folder under the project root (which defaults to the package directory): result/MODEL_NAME/BFCL_v3_TEST_CATEGORY_result.json.
  • You can customise the location by setting the BFCL_PROJECT_ROOT environment variable or passing the --result-dir option.

An inference log is included with the model responses to help analyze/debug the model's performance, and to better understand the model behavior. For more verbose logging, use the --include-input-log flag. Refer to LOG_GUIDE.md for details on how to interpret the inference logs.

For API-based Models

bfcl generate --model MODEL_NAME --test-category TEST_CATEGORY --num-threads 1
  • Use --num-threads to control the level of parallel inference. The default (1) means no parallelization.
  • The maximum allowable threads depends on your API’s rate limits.

For Locally-hosted OSS Models

bfcl generate \
  --model MODEL_NAME \
  --test-category TEST_CATEGORY \
  --backend {vllm|sglang} \
  --num-gpus 1 \
  --gpu-memory-utilization 0.9 \
  --local-model-path /path/to/local/model   # ← optional
  • Choose your backend using --backend vllm or --backend sglang. The default backend is vllm.
  • Control GPU usage by adjusting --num-gpus (default 1, relevant for multi-GPU tensor parallelism) and --gpu-memory-utilization (default 0.9), which can help avoid out-of-memory errors.
  • --local-model-path (optional): Point this flag at a directory that already contains the model’s files (config.json, tokenizer, weights, etc.). Use it only when you’ve pre‑downloaded the model and the weights live somewhere other than the default $HF_HOME cache.
For Pre-existing OpenAI-compatible Endpoints

If you have a server already running (e.g., vLLM in a SLURM cluster), you can bypass the vLLM/sglang setup phase and directly generate responses by using the --skip-server-setup flag:

bfcl generate --model MODEL_NAME --test-category TEST_CATEGORY --skip-server-setup

In addition, you should specify the endpoint and port used by the server. By default, the endpoint is localhost and the port is 1053. These can be overridden by the VLLM_ENDPOINT and VLLM_PORT environment variables in the .env file:

VLLM_ENDPOINT=localhost
VLLM_PORT=1053

(Alternate) Script Execution for Generation

For those who prefer using script execution instead of the CLI, you can run the following command:

python -m bfcl.openfunctions_evaluation --model MODEL_NAME --test-category TEST_CATEGORY

When specifying multiple models or test categories, separate them with spaces, not commas. All other flags mentioned earlier are compatible with the script execution method as well.

Evaluating Generated Responses

Important: You must have generated the model responses before running the evaluation.

Once you have the results, run:

bfcl evaluate --model MODEL_NAME --test-category TEST_CATEGORY

The MODEL_NAME and TEST_CATEGORY options are the same as those used in the Generating LLM Responses section. For details, refer to SUPPORTED_MODELS.md and TEST_CATEGORIES.md.

If in the previous step you stored the model responses in a custom directory, specify it using the --result-dir flag or set BFCL_PROJECT_ROOT so the evaluator can locate the files.

Note: For unevaluated test categories, they will be marked as N/A in the evaluation result csv files. For summary columns (e.g., Overall Acc, Non_Live Overall Acc, Live Overall Acc, and Multi Turn Overall Acc), the score reported will treat all unevaluated categories as 0 during calculation.

Output Structure

Evaluation scores are stored in a score/ directory under the project root (defaults to the package directory), mirroring the structure of result/: score/MODEL_NAME/BFCL_v3_TEST_CATEGORY_score.json.

  • To use a custom directory for the score file, set the BFCL_PROJECT_ROOT environment variable or specify --score-dir.

Additionally, four CSV files are generated in ./score/:

  • data_overall.csv – Overall scores for each model. This is used for updating the leaderboard.
  • data_live.csv – Detailed breakdown of scores for each Live (single-turn) test category.
  • data_non_live.csv – Detailed breakdown of scores for each Non-Live (single-turn) test category.
  • data_multi_turn.csv – Detailed breakdown of scores for each Multi-Turn test category.

(Optional) WandB Evaluation Logging

If you'd like to log evaluation results to WandB artifacts:

pip install -e.[wandb]

Mkae sure you also set WANDB_BFCL_PROJECT=ENTITY:PROJECT in .env.

(Alternate) Script Execution for Evaluation

For those who prefer using script execution instead of the CLI, you can run the following command:

python -m bfcl.eval_checker.eval_runner --model MODEL_NAME --test-category TEST_CATEGORY

When specifying multiple models or test categories, separate them with spaces, not commas. All other flags mentioned earlier are compatible with the script execution method as well.

Contributing & How to Add New Models

We welcome contributions! To add a new model:

  1. Review bfcl/model_handler/base_handler.py and/or bfcl/model_handler/local_inference/base_oss_handler.py (if your model is hosted locally).
  2. Implement a new handler class for your model.
  3. Update bfcl/constants/model_config.py.
  4. Submit a Pull Request.

For detailed steps, please see the Contributing Guide.


Additional Resources

All the leaderboard statistics, and data used to train the models are released under Apache 2.0. Gorilla is an open source effort from UC Berkeley and we welcome contributors. Please email us your comments, criticisms, and questions. More information about the project can be found at https://gorilla.cs.berkeley.edu/

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bfcl_eval-3.0.0.tar.gz (1.7 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

bfcl_eval-3.0.0-py3-none-any.whl (1.8 MB view details)

Uploaded Python 3

File details

Details for the file bfcl_eval-3.0.0.tar.gz.

File metadata

  • Download URL: bfcl_eval-3.0.0.tar.gz
  • Upload date:
  • Size: 1.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.9

File hashes

Hashes for bfcl_eval-3.0.0.tar.gz
Algorithm Hash digest
SHA256 c76a81bbc002a3ff446f6e9f66ef418b94d30f2e749fc461c8a225bca39aab38
MD5 3e9a9dfe0b3de5dedfba6c0d176e3b68
BLAKE2b-256 33e6cc71bfd384a89401d066525f9fc9f81743dacace35c9176a21711d98c24d

See more details on using hashes here.

File details

Details for the file bfcl_eval-3.0.0-py3-none-any.whl.

File metadata

  • Download URL: bfcl_eval-3.0.0-py3-none-any.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.9

File hashes

Hashes for bfcl_eval-3.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5c00f3c44a5b80bdd6a2d5869d0b6d2a7e9868e3bb9acdbc6ef98d83b4bb7f3d
MD5 23dc62b09945664bcfee49b4d5c5778c
BLAKE2b-256 0cb269a96e167a8b9812cbc0b4c573982bcf71a2de99c4303e67bdb8a1864be1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page