Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ include = ["bfcl*"]
Repository = "https://github.com/ShishirPatil/gorilla/tree/main/berkeley-function-call-leaderboard"

[project.optional-dependencies]
oss_eval_vllm = ["vllm==0.6.3"]
oss_eval_vllm = ["vllm==0.26.0"]

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

MAJOR DEPENDENCY_CONFLICT Align the vLLM extra with the pinned OpenAI version

Installing the documented .[oss_eval_vllm] extra now fails dependency resolution: this project pins openai==1.65.0, while vllm 0.26.0 requires openai>=2.0.0, so users cannot install the optional vLLM backend.

Prompt to fix with AI

Copy this prompt into your AI coding assistant to fix this issue.

In verifiers/berkeley-function-call-leaderboard/pyproject.toml:25 and 50, resolve the dependency conflict between the project's exact OpenAI pin and vllm 0.26.0's openai>=2.0.0 requirement. Choose compatible versions while preserving BFCL's OpenAI API compatibility, then verify `pip install -e '.[oss_eval_vllm]'` resolves successfully.

oss_eval_sglang = ["sglang[all]"]
wandb = ["wandb==0.18.5"]