Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions berkeley-function-call-leaderboard/SUPPORTED_MODELS.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ For model names containing `{...}`, multiple versions are available. For example
| QwQ-32B | Prompt | Alibaba Cloud | qwq-32b |
| QwQ-32B | Prompt | Novita AI | qwen/qwq-32b-novita |
| RZN-T | Prompt | Phronetic AI | phronetic-ai/RZN-T |
| Seed-OSS-36B-Instruct | Prompt | Self-hosted 💻 | ByteDance-Seed/Seed-OSS-36B-Instruct |
| Sky-T1-32B-Preview | Prompt | Self-hosted 💻 | NovaSky-AI/Sky-T1-32B-Preview |
| Snowflake/snowflake-arctic-instruct | Prompt | Snowflake | snowflake/arctic |
| ThinkAgent-1B | Function Calling | Self-hosted 💻 | ThinkAgents/ThinkAgent-1B |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
from bfcl_eval.model_handler.local_inference.salesforce_qwen import (
SalesforceQwenHandler,
)
from bfcl_eval.model_handler.local_inference.seed_oss import SeedOSSHandler
from bfcl_eval.model_handler.local_inference.think_agent import ThinkAgentHandler

# -----------------------------------------------------------------------------
Expand Down Expand Up @@ -1952,6 +1953,18 @@ class ModelConfig:
is_fc_model=True,
underscore_to_dot=False,
),
"ByteDance-Seed/Seed-OSS-36B-Instruct": ModelConfig(
model_name="ByteDance-Seed/Seed-OSS-36B-Instruct",
display_name="Seed-OSS-36B-Instruct (Prompt)",
url="https://huggingface.co/ByteDance-Seed/Seed-OSS-36B-Instruct",
org="ByteDance",
license="apache-2.0",
model_handler=SeedOSSHandler,
input_price=None,
output_price=None,
is_fc_model=False,
underscore_to_dot=False,
),
"phronetic-ai/RZN-T": ModelConfig(
model_name="phronetic-ai/RZN-T",
display_name="RZN-T (Prompt)",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@
"BitAgent/BitAgent-8B",
"BitAgent/BitAgent-Bounty-8B",
"ThinkAgents/ThinkAgent-1B",
"ByteDance-Seed/Seed-OSS-36B-Instruct",
"phronetic-ai/RZN-T",
"meta-llama/llama-4-maverick-17b-128e-instruct-fp8-novita",
"meta-llama/llama-4-maverick-17b-128e-instruct-fp8-FC-novita",
Expand Down
Loading