Skip to content

Commit 3d268da

Browse files
Add CALM models (#900)
Add the following new models to the leaderboard: - `uiuc-convai/CALM-8B` - `uiuc-convai/CALM-70B` - `uiuc-convai/CALM-405B` --------- Co-authored-by: Huanzhi (Hans) Mao <[email protected]>
1 parent 97f6d6e commit 3d268da

File tree

4 files changed

+26
-0
lines changed

4 files changed

+26
-0
lines changed

berkeley-function-call-leaderboard/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22

33
All notable changes to the Berkeley Function Calling Leaderboard will be documented in this file.
4+
- [Feb 5, 2025] [#900](https://github.com/ShishirPatil/gorilla/pull/900): Add the following new models to the leaderboard:
5+
- `uiuc-convai/CALM-8B`
6+
- `uiuc-convai/CALM-70B`
7+
- `uiuc-convai/CALM-405B`
48

59
- [Feb 2, 2025] [#898](https://github.com/ShishirPatil/gorilla/pull/898): Add the following new models to the leaderboard:
610
- `o3-mini-2025-01-31-FC`

berkeley-function-call-leaderboard/SUPPORTED_MODELS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ Below is a comprehensive table of models supported for running leaderboard evalu
102102
|Qwen/QwQ-32B-Preview 💻| Prompt|
103103
|NovaSky-AI/Sky-T1-32B-Preview 💻| Prompt|
104104
|tiiuae/Falcon3-{1B,3B,7B,10B}-Instruct 💻| Function Calling|
105+
|uiuc-convai/CALM-{8B,70B,405B} 💻| Function Calling|
105106

106107
---
107108

berkeley-function-call-leaderboard/bfcl/eval_checker/model_metadata.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -865,6 +865,24 @@
865865
"TII UAE",
866866
"falcon-llm-license",
867867
],
868+
"uiuc-convai/CALM-8B": [
869+
"CALM-8B",
870+
"https://huggingface.co/uiuc-convai/CALM-8B",
871+
"UIUC + Oumi"
872+
"Meta Llama 3 Community"
873+
],
874+
"uiuc-convai/CALM-70B": [
875+
"CALM-8B",
876+
"https://huggingface.co/uiuc-convai/CALM-70B",
877+
"UIUC + Oumi"
878+
"Meta Llama 3 Community"
879+
],
880+
"uiuc-convai/CALM-405B": [
881+
"CALM-8B",
882+
"https://huggingface.co/uiuc-convai/CALM-405B",
883+
"UIUC + Oumi"
884+
"Meta Llama 3 Community"
885+
]
868886
}
869887

870888
INPUT_PRICE_PER_MILLION_TOKEN = {

berkeley-function-call-leaderboard/bfcl/model_handler/handler_map.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,9 @@
168168
"tiiuae/Falcon3-7B-Instruct-FC": Falcon3FCHandler,
169169
"tiiuae/Falcon3-3B-Instruct-FC": Falcon3FCHandler,
170170
"tiiuae/Falcon3-1B-Instruct-FC": Falcon3FCHandler,
171+
"uiuc-convai/CALM-8B": LlamaHandler,
172+
"uiuc-convai/CALM-70B": LlamaHandler,
173+
"uiuc-convai/CALM-405B": LlamaHandler
171174
}
172175

173176
# Deprecated/outdated models, no longer on the leaderboard

0 commit comments

Comments
 (0)